From c1884aae22cd17af023ac4424b4e6623eb0ea9dd Mon Sep 17 00:00:00 2001 From: lightning-li Date: Tue, 6 Dec 2022 16:31:12 +0800 Subject: [PATCH] Initial commit for zkmerkle --- .gitignore | 16 + .idea/.gitignore | 8 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/zkmerkle-proof-of-solvency.iml | 9 + LICENSE | 21 + README.md | 247 ++++++ check_prover_status.py | 59 ++ circuit/batch_create_user_circuit.go | 153 ++++ circuit/constants.go | 8 + circuit/types.go | 31 + circuit/utils.go | 57 ++ go.mod | 91 +++ go.sum | 1044 ++++++++++++++++++++++++ src/dbtool/config/config.go | 12 + src/dbtool/config/config.json | 10 + src/dbtool/main.go | 148 ++++ src/keygen/main.go | 37 + src/prover/config/config.go | 12 + src/prover/config/config.json | 9 + src/prover/main.go | 34 + src/prover/prover/proof_model.go | 133 +++ src/prover/prover/prover.go | 270 ++++++ src/sampledata/sample_users0.csv | 101 +++ src/sampledata/sample_users1.csv | 101 +++ src/userproof/config/config.go | 13 + src/userproof/config/config.json | 11 + src/userproof/main.go | 281 +++++++ src/userproof/model/userproof_model.go | 104 +++ src/utils/account_tree.go | 86 ++ src/utils/constants.go | 32 + src/utils/error_codes.go | 9 + src/utils/redis_lock.go | 51 ++ src/utils/secret_manager.go | 44 + src/utils/types.go | 45 + src/utils/utils.go | 380 +++++++++ src/utils/utils_test.go | 89 ++ src/verifier/config/config.go | 22 + src/verifier/config/config.json | 20 + src/verifier/config/user_config.json | 9 + src/verifier/main.go | 227 ++++++ src/witness/config/config.go | 13 + src/witness/config/config.json | 11 + src/witness/main.go | 81 ++ src/witness/witness/witness.go | 260 ++++++ src/witness/witness/witness_model.go | 159 ++++ 46 files changed, 4572 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/zkmerkle-proof-of-solvency.iml create mode 100644 LICENSE create mode 100644 README.md create mode 100644 check_prover_status.py create mode 100644 circuit/batch_create_user_circuit.go create mode 100644 circuit/constants.go create mode 100644 circuit/types.go create mode 100644 circuit/utils.go create mode 100644 go.mod create mode 100644 go.sum create mode 100644 src/dbtool/config/config.go create mode 100644 src/dbtool/config/config.json create mode 100644 src/dbtool/main.go create mode 100644 src/keygen/main.go create mode 100644 src/prover/config/config.go create mode 100644 src/prover/config/config.json create mode 100644 src/prover/main.go create mode 100644 src/prover/prover/proof_model.go create mode 100644 src/prover/prover/prover.go create mode 100644 src/sampledata/sample_users0.csv create mode 100644 src/sampledata/sample_users1.csv create mode 100644 src/userproof/config/config.go create mode 100644 src/userproof/config/config.json create mode 100644 src/userproof/main.go create mode 100644 src/userproof/model/userproof_model.go create mode 100644 src/utils/account_tree.go create mode 100644 src/utils/constants.go create mode 100644 src/utils/error_codes.go create mode 100644 src/utils/redis_lock.go create mode 100644 src/utils/secret_manager.go create mode 100644 src/utils/types.go create mode 100644 src/utils/utils.go create mode 100644 src/utils/utils_test.go create mode 100644 src/verifier/config/config.go create mode 100644 src/verifier/config/config.json create mode 100644 src/verifier/config/user_config.json create mode 100644 src/verifier/main.go create mode 100644 src/witness/config/config.go create mode 100644 src/witness/config/config.json create mode 100644 src/witness/main.go create mode 100644 src/witness/witness/witness.go create mode 100644 src/witness/witness/witness_model.go diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8af1d84 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out +src/keygen/zkpor* + +# Dependency directories (remove the comment below to include it) +# vendor/ diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..428d29e --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/zkmerkle-proof-of-solvency.iml b/.idea/zkmerkle-proof-of-solvency.iml new file mode 100644 index 0000000..5e764c4 --- /dev/null +++ b/.idea/zkmerkle-proof-of-solvency.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3294c2d --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Binance + +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/README.md b/README.md new file mode 100644 index 0000000..7b17b30 --- /dev/null +++ b/README.md @@ -0,0 +1,247 @@ +# zkmerkle-proof-of-solvency + +## How to run + +### Run third-party services +This project needs following third party services: +- postgresql: used to store `witness`, `userproof`, `proof` table; +- redis: provide distributed lock for multi provers; +- kvrocks: used to store account tree + +We can use docker to run these services: + +```shell +docker run -d --name zkpos-redis -p 6379:6379 redis + +docker run -d --name zkpos-postgres -p 5432:5432 -e PGDATA=/var/lib/postgresql/data/pgdata -v /server/docker_data/pgdata:/var/lib/postgresql/data -e POSTGRES_PASSWORD=zkpos@123 -e POSTGRES_USER=postgres -e POSTGRES_DB=zkpos postgres + +docker run -d --name zkpos-kvrocks -p 6666:6666 -v /server/docker_data/kvrocksdata:/var/lib/kvrocks apache/kvrocks +``` + +where `/server/docker_data/` is directory in the host machine which is used to persist postgres and kvrocks docker data. + + +### Generate zk keys + +The `keygen` service is for generating zk related keys which are used to generate and verify zk proof. The `BatchCreateUserOpsCounts` constant variable in utils package represent how many users can be created in one batch. +The larger the `BatchCreateUserOpsCounts` is, the longer it will take to generate zk-related keys and generate zk proof. + +We choose `512` as the `BatchCreateUserOpsCounts` variable. It will take about 3 hours to generate zk-related keys, and 55 seconds to generate zk proof for one batch in a 128GB memory and 32 core virtual machine. + +Run the following commands to start `keygen` service: +``` +// make sure the BatchCreateUserOpsCounts in utils/constants.go is expected + +cd src/keygen; go run main.go +``` + +After `keygen` service finishes running, there will be several key files generated in the current directory, like the following: +```shell +Total 26G +-rw-rw-r-- 1 ec2-user ec2-user 69M 12月 26 07:49 zkpor512.ccs.ct.save +-rw-rw-r-- 1 ec2-user ec2-user 16G 12月 26 07:51 zkpor512.ccs.save +-rw-rw-r-- 1 ec2-user ec2-user 1.8G 12月 26 07:51 zkpor512.pk.A.save +-rw-rw-r-- 1 ec2-user ec2-user 1.6G 12月 26 07:51 zkpor512.pk.B1.save +-rw-rw-r-- 1 ec2-user ec2-user 3.2G 12月 26 07:51 zkpor512.pk.B2.save +-rw-rw-r-- 1 ec2-user ec2-user 59M 12月 26 07:51 zkpor512.pk.E.save +-rw-rw-r-- 1 ec2-user ec2-user 1.9G 12月 26 07:52 zkpor512.pk.K.save +-rw-rw-r-- 1 ec2-user ec2-user 708 12月 26 07:52 zkpor512.vk.save +-rw-rw-r-- 1 ec2-user ec2-user 2.1G 12月 26 07:52 zkpor512.pk.Z.save +``` + +### Generate witness + +The `witness` service is used to generate witness for `prover` service. + +`witness/config/config.json` is the config file `witness` service use. The sample file is as follows: +```json +{ + "PostgresDataSource" : "host=127.0.0.1 user=postgres password=zkpos@123 dbname=zkpos port=5432 sslmode=disable", + "UserDataFile": "/server/Result_11.csv", + "DbSuffix": "0", + "TreeDB": { + "Driver": "redis", + "Option": { + "Addr": "127.0.0.1:6666" + } + } +} +``` + +Where + +- `PostgresDataSource`: this is the postgres sql config; +- `UserDataFile`: all users balance sheet file; +- `DbSuffix`: this suffix will be appended to the ending of table name, such as `proof0`, `witness0` table; +- `TreeDB`: + - `Driver`: `redis` means account tree use kvrocks as its storage engine; + - `Option`: + - `Addr`: `kvrocks` service listen address + + +Run the following command to start `witness` service: +```shell +cd witness; go run main.go +``` + +The `witness` service supports recovery from unexpected crash. After `witness` service finish running, we can see `witness` from `witness` table. + +The performance: about 850 users witness generation per second in a 128GB memory and 32 core virtual machine. + +### Generate zk proof + +The `prover` service is used to generate zk proof and supports running in parallel. It reads witness from `witness` table generated by `witness` service. + +`prover/config/config.json` is the config file `prover` service uses. The sample file is as follows: +```json +{ + "PostgresDataSource" : "host=127.0.0.1 user=postgres password=zkpos@123 dbname=zkpos port=5432 sslmode=disable", + "DbSuffix": "0", + "Redis": { + "Host": "127.0.0.1:6379", + "Type": "node" + }, + "ZkKeyName": "/server/zkmerkle-proof-of-solvency/src/keygen/zkpor512" +} +``` + +Where + +- `PostgresDataSource`: this is the postgres sql config; +- `DbSuffix`: this suffix will be appended to the ending of table name, such as `proof0`, `witness0` table; +- `Redis`: + - `Host`: `redis` service listen addr; + - `Type`: only support `node` type +- `ZkKeyName`: the key name generated by `keygen` service + +Run the following command to start `prover` service: +```shell +cd prover; go run main.go +``` + +To run `prover` service in parallel, just repeat executing above commands. + +**Note: After all prover service finishes running, We should use `go run main.go -rerun` command to regenerate proof for unfinished batch** + +After the whole `prover` service finished, we can see batch zk proof in `proof` table. + +### Generate user proof + +The `userproof` service is used to generate and persist user merkle proof. It uses `userproof/config/config.json` as config file, and the sample config is as follows: +```json +{ + "PostgresDataSource" : "host=127.0.0.1 user=postgres password=zkpos@123 dbname=zkpos port=5432 sslmode=disable", + "UserDataFile": "/server/Result_11.csv", + "DbSuffix": "0", + "TreeDB": { + "Driver": "redis", + "Option": { + "Addr": "127.0.0.1:6666" + } + } +} +``` + +Where + +- `PostgresDataSource`: this is the postgres sql config; +- `UserDataFile`: all users balance sheet; +- `DbSuffix`: this suffix will be appended to the ending of table name, such as `proof0`, `witness0` table; +- `TreeDB`: + - `Driver`: `redis` means account tree use kvrocks as its storage engine; + - `Option`: + - `Addr`: `kvrocks` service listen address + +Run the following command to run `userproof` service: +```shell +cd userproof; go run main.go +``` + +After `userproof` service finishes running, we can see every user proof from `userproof` table. + +The performance: about 10k users proof generation per second in a 128GB memory and 32 core virtual machine. + +### Verifier + +The `verifier` service is used to verify batch proof and single user proof. + +#### Verify batch proof +The service use `config.json` as its config file, and the sample config is as follows: +```json +{ + "ProofTable": "config/proof.csv", + "ZkKeyName": "config/zkpor864", + "CexAssetsInfo": [{"TotalEquity":219971568487,"TotalDebt":9789219,"BasePrice":24620000000},{"TotalEquity":8664493444,"TotalDebt":122580,"BasePrice":1682628000000},{"TotalEquity":67463930749983,"TotalDebt":16127314913,"BasePrice":100000000},{"TotalEquity":68358645578,"TotalDebt":130187,"BasePrice":121377000000},{"TotalEquity":590353015932,"TotalDebt":0,"BasePrice":598900000},{"TotalEquity":255845425858,"TotalDebt":13839361,"BasePrice":6541000000},{"TotalEquity":0,"TotalDebt":0,"BasePrice":99991478},{"TotalEquity":267958065914051,"TotalDebt":501899265949,"BasePrice":100000000},{"TotalEquity":124934670143615,"TotalDebt":1422964747,"BasePrice":34500000}] +} +``` +Where +- `ProofTable`: this is proof csv file which can be exported by `proof` table; +- `ZkKeyName`: the key name generated by `keygen` service; +- `CexAssetsInfo`: this is published by CEX, it represents CEX's liability; + +Run the following command to verify batch proof: +```shell +cd verifier; go run main.go +``` + +#### Verify user proof +The service use `user_config.json` as its config file, and the sample config is as follows: +```json +{ + "AccountIndex": 9, + "AccountIdHash": "0000041cb7323211d0b356c2fe6e79fdaf0c27d74b3bb1a4635942f9ae92145b", + "Root": "29591ef3a9ed02605edd6ab14f5dd49e7dbe0d03e72a27383f929ef3efb7514f", + "Assets": [{"Index":7,"Equity":123456000,"Debt":0}], + "Proof": ["DrPpFsm4/5HntRTf8M3dbgpdrxq3Q8lZkB2ngysW2js=","G1WgD/CvmGApQgmIX0rE0BlSifkw6IfNwY9z2DnRazM=","HZm8N563lDMrx//oMjejlXKLzLrZQRqKZKyXwpDnT+I=","A+wqmnw0NfdgAyEieZRqKlczF48VOROxME36YBwLhmY=","BaLA62VkWlLE/FZTxnvx/lwU7WNfDxgdM2cBw27MAog=","EvkbbZF7Y/W8AxPc+49lmzzFNdyPl1QWRu1ZQB/gmz8=","EJzsNkrzgcB6LIctzoqWAetzLHO57vx00FxIlLKhwqg=","D3kGOz1Xcsi5hGXr02LOSC23L+lCOhq6FlXGiPYcYig=","DSAmcCy6GEl1DlRNpP05e4I9ScMCz/4DtJCKpserVL8=","L16LdkqEmjI/4uVNETm4ScZ5uA/Cho59zjbgN1OgI+k=","CaRuyDB3b3JeZlItZw8Txi7MSP5vyRpco0OtHRuO6RQ=","CkfKeaCV6rLcskjWE91vCAxTPKEymsDtJvc4r8aWytw=","JfAF+uLGIBAJklZrWRPjxmJ3lFHyau9oNL5dOwQ72kQ=","JKQm66yeIFuPJcm5OkTUDyohsL5CWFF+fFpW/NiS2O0=","KXs+zCQELaQRJzQoCnYm+G2lr5eKLqmWd3G0xeSPWgc=","AFL9l/1p5puhKsCtS7WTT/hExtl3hmRfXnTofVY9+3s=","A2lctbb1mGsAgbERpnu4/RKX/OkcU06dhU9l4wS7e8k=","AIB1T+2rEytbSyMLfyp1rNhS0RCmPYwITdjhb/34FVQ=","GQmXAAvuoPUvt4zDrQ9qaAcRV5t8TPFXAIAIuwv0vr0=","J8pP9A0l54qj9UfumcTXn3hVBYEh+iBH03newr296io=","LD/99JpY8ZZupXaoRt6p6wKDmQepQyVMsJ3s5rX+Q9g=","EOqvnEUbpnzF0HeEv0PdB/R3KMbNU15jYqwNaBJ/j7M=","KLZwBqvYBNFPBFVPQQOipuYd9bYdLEme+Y5UiDRV5Z8=","IXgr/ZWOF/rduJvkSjOABCUtj5C1+tXjHJ/AwR+f7MM=","MFzAvInNDNdT4+6kp2YKAUT4+sb8fdrha9BxXnwHR1Q=","DdvOYaMZDO/di7mBvQdEocS2CE8BH2bGmIDuSGBaHa8=","MEa67EULCikf5rusfcsUb/kWUfx7NPpHjzHKEo3imho=","KLRU4kqn5Fd3FtjapW9MTJBgWdMtAGKgt3OVLQNHh14="], + "TotalEquity": 123456000, + "TotalDebt": 0 +} +``` + +Where + +- `AccountIndex`: account index used to verify; +- `AccountIdHash`: account hash id which contains user info +- `Root`: account tree root published by cex; +- `Assets`: all user assets info; +- `Proof`: user merkle proof which uses `base64` encoding; +- `TotalEquity`: user total equity which is calculated by all the assets equity multipy its corresponding price +- `TotalDebt`: user total debt which is calculated by all the assets debt multipy its corresponding price + +Run the following command to verify single user proof: +```shell +cd verifier; go run main.go -user +``` + +### dbtool command + +Run the following command to remove only kvrocks data: +```shell +cd src/dbtool; go run main.go -only_delete_kvrocks +``` + +Run the following command to delete kvrocks data and postgresql: +```shell +cd src/dbtool; go run main.go -delete_all +``` + +### Check data correctness + +#### check account tree construct correctness +`userproof` service provides a command flag `-memory_tree` which can construct account tree in memory +using user balance sheet. + +Run the following command: +```shell +cd userproof; go run main.go -memory_tree +``` + +Compare the account tree root in the output log with the account tree root by `witness` service, if matches, then the account tree is correctly constructed. + +**Note: when `userproof` service runs in the `-memory_tree` mode, its performance is about 75k per minute, so 3000w accounts will take about ~7 hours** + +#### check postgresql table consistency + +Suppose the number of users is `accountsNum`, and `batchNumber` is 512, so the number of rows in `witness` and `proof` table is: `(accountNum + 512 - 1) / 512`. And the number of rows in `userproof` table equals to `accountsNum`. + +When all services run finished, Check that the number of rows in table is as expected. \ No newline at end of file diff --git a/check_prover_status.py b/check_prover_status.py new file mode 100644 index 0000000..2b4b886 --- /dev/null +++ b/check_prover_status.py @@ -0,0 +1,59 @@ +import sys +import time +import subprocess +import os + +def get_delta(): + p = subprocess.run(["go", "run", "main.go", "-check_prover_status"], stdout=subprocess.PIPE) + return int(p.stdout.strip().split(b"\n")[1]) + +def rerun(): + process = subprocess.Popen(["go", "run", "main.go", "-rerun"], stdout=subprocess.PIPE) + while True: + output = process.stdout.readline() + if output == b'' and process.poll() is not None: + break + if output: + print(output.strip()) + rc = process.poll() + return rc + +if __name__ == "__main__": + os.chdir("src/dbtool") + prev_delta = get_delta() + print("prev_delta ", prev_delta) + while True: + time.sleep(60) + cur_delta = get_delta() + print("cur_delta ", cur_delta) + if prev_delta != cur_delta or prev_delta == 0: + break + + rerun_retry = 0 + while True: + time.sleep(2*60) + cur_delta = get_delta() + if prev_delta == 0 or cur_delta == 0: + print("all proofs has been generated") + break + if cur_delta == prev_delta: + print("there is no new proof generate in 2 minutes, it means all prover finished running") + print("there are ", cur_delta, " proofs need to rerun") + os.chdir("../prover") + rerun() + os.chdir("../dbtool") + delta = get_delta() + if delta == 0: + print("rerun successfully") + break + else: + print("after rerun, there is still ", delta, " proof, will retry...") + rerun_retry += 1 + if rerun_retry > 3: + print("rerun failed too many times, need manually check") + exit(0) + + print("current delta is ", cur_delta, " previous delta is ", prev_delta) + prev_delta = cur_delta + + print("successfully...") \ No newline at end of file diff --git a/circuit/batch_create_user_circuit.go b/circuit/batch_create_user_circuit.go new file mode 100644 index 0000000..c326cef --- /dev/null +++ b/circuit/batch_create_user_circuit.go @@ -0,0 +1,153 @@ +package circuit + +import ( + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "github.com/consensys/gnark/std/hash/poseidon" +) + +type BatchCreateUserCircuit struct { + BatchCommitment Variable `gnark:",public"` + BeforeAccountTreeRoot Variable + AfterAccountTreeRoot Variable + BeforeCEXAssetsCommitment Variable + AfterCEXAssetsCommitment Variable + BeforeCexAssets []CexAssetInfo + CreateUserOps []CreateUserOperation +} + +func NewVerifyBatchCreateUserCircuit(commitment []byte) *BatchCreateUserCircuit { + var v BatchCreateUserCircuit + v.BatchCommitment = commitment + return &v +} + +func NewBatchCreateUserCircuit(assetCounts uint32, batchCounts uint32) *BatchCreateUserCircuit { + var circuit BatchCreateUserCircuit + circuit.BatchCommitment = 0 + circuit.BeforeAccountTreeRoot = 0 + circuit.AfterAccountTreeRoot = 0 + circuit.BeforeCEXAssetsCommitment = 0 + circuit.AfterCEXAssetsCommitment = 0 + circuit.BeforeCexAssets = make([]CexAssetInfo, assetCounts) + for i := uint32(0); i < assetCounts; i++ { + circuit.BeforeCexAssets[i] = CexAssetInfo{ + TotalEquity: 0, + TotalDebt: 0, + BasePrice: 0, + } + } + circuit.CreateUserOps = make([]CreateUserOperation, batchCounts) + for i := uint32(0); i < batchCounts; i++ { + circuit.CreateUserOps[i] = CreateUserOperation{ + BeforeAccountTreeRoot: 0, + AfterAccountTreeRoot: 0, + Assets: make([]UserAssetInfo, assetCounts), + AccountIndex: 0, + AccountProof: [utils.AccountTreeDepth]Variable{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, + } + for j := uint32(0); j < assetCounts; j++ { + circuit.CreateUserOps[i].Assets[j].Debt = 0 + circuit.CreateUserOps[i].Assets[j].Equity = 0 + } + } + return &circuit +} + +func (b BatchCreateUserCircuit) Define(api API) error { + // verify whether BatchCommitment is computed correctly + actualBatchCommitment := poseidon.Poseidon(api, b.BeforeAccountTreeRoot, b.AfterAccountTreeRoot, b.BeforeCEXAssetsCommitment, b.AfterCEXAssetsCommitment) + api.AssertIsEqual(b.BatchCommitment, actualBatchCommitment) + cexAssets := make([]Variable, len(b.BeforeCexAssets)) + afterCexAssets := make([]CexAssetInfo, len(b.BeforeCexAssets)) + + // verify whether beforeCexAssetsCommitment is computed correctly + for i := 0; i < len(b.BeforeCexAssets); i++ { + CheckValueInRange(api, b.BeforeCexAssets[i].TotalEquity) + CheckValueInRange(api, b.BeforeCexAssets[i].TotalDebt) + cexAssets[i] = api.Add(api.Mul(b.BeforeCexAssets[i].TotalEquity, utils.Uint64MaxValueFrSquare), + api.Mul(b.BeforeCexAssets[i].TotalDebt, utils.Uint64MaxValueFr), b.BeforeCexAssets[i].BasePrice) + afterCexAssets[i] = b.BeforeCexAssets[i] + } + actualCexAssetsCommitment := poseidon.Poseidon(api, cexAssets...) + api.AssertIsEqual(b.BeforeCEXAssetsCommitment, actualCexAssetsCommitment) + + api.AssertIsEqual(b.BeforeAccountTreeRoot, b.CreateUserOps[0].BeforeAccountTreeRoot) + api.AssertIsEqual(b.AfterAccountTreeRoot, b.CreateUserOps[len(b.CreateUserOps)-1].AfterAccountTreeRoot) + + tempAfterCexAssets := make([]Variable, len(b.BeforeCexAssets)) + for i := 0; i < len(b.CreateUserOps); i++ { + accountIndexHelper := AccountIdToMerkleHelper(api, b.CreateUserOps[i].AccountIndex) + VerifyMerkleProof(api, b.CreateUserOps[i].BeforeAccountTreeRoot, EmptyAccountLeafNodeHash, b.CreateUserOps[i].AccountProof[:], accountIndexHelper) + var totalUserEquity Variable = 0 + var totalUserDebt Variable = 0 + userAssets := b.CreateUserOps[i].Assets + for j := 0; j < len(userAssets); j++ { + CheckValueInRange(api, userAssets[j].Debt) + CheckValueInRange(api, userAssets[j].Equity) + totalUserEquity = api.Add(totalUserEquity, api.Mul(userAssets[j].Equity, b.BeforeCexAssets[j].BasePrice)) + totalUserDebt = api.Add(totalUserDebt, api.Mul(userAssets[j].Debt, b.BeforeCexAssets[j].BasePrice)) + + afterCexAssets[j].TotalEquity = api.Add(afterCexAssets[j].TotalEquity, userAssets[j].Equity) + afterCexAssets[j].TotalDebt = api.Add(afterCexAssets[j].TotalDebt, userAssets[j].Debt) + } + // make sure user's total Equity is greater than or equal to user's total Debt + api.AssertIsLessOrEqual(totalUserDebt, totalUserEquity) + + userAssetsCommitment := ComputeUserAssetsCommitment(api, userAssets) + accountHash := poseidon.Poseidon(api, b.CreateUserOps[i].AccountIdHash, totalUserEquity, totalUserDebt, userAssetsCommitment) + actualAccountTreeRoot := UpdateMerkleProof(api, accountHash, b.CreateUserOps[i].AccountProof[:], accountIndexHelper) + api.AssertIsEqual(actualAccountTreeRoot, b.CreateUserOps[i].AfterAccountTreeRoot) + + } + + for j := 0; j < len(tempAfterCexAssets); j++ { + tempAfterCexAssets[j] = api.Add(api.Mul(afterCexAssets[j].TotalEquity, utils.Uint64MaxValueFrSquare), + api.Mul(afterCexAssets[j].TotalDebt, utils.Uint64MaxValueFr), afterCexAssets[j].BasePrice) + } + + // verify AfterCEXAssetsCommitment is computed correctly + actualAfterCEXAssetsCommitment := poseidon.Poseidon(api, tempAfterCexAssets...) + api.AssertIsEqual(actualAfterCEXAssetsCommitment, b.AfterCEXAssetsCommitment) + + for i := 0; i < len(b.CreateUserOps)-1; i++ { + api.AssertIsEqual(b.CreateUserOps[i].AfterAccountTreeRoot, b.CreateUserOps[i+1].BeforeAccountTreeRoot) + } + + return nil +} + +func SetBatchCreateUserCircuitWitness(batchWitness *utils.BatchCreateUserWitness) (witness *BatchCreateUserCircuit, err error) { + witness = &BatchCreateUserCircuit{ + BatchCommitment: batchWitness.BatchCommitment, + BeforeAccountTreeRoot: batchWitness.BeforeAccountTreeRoot, + AfterAccountTreeRoot: batchWitness.AfterAccountTreeRoot, + BeforeCEXAssetsCommitment: batchWitness.BeforeCEXAssetsCommitment, + AfterCEXAssetsCommitment: batchWitness.AfterCEXAssetsCommitment, + BeforeCexAssets: make([]CexAssetInfo, len(batchWitness.BeforeCexAssets)), + CreateUserOps: make([]CreateUserOperation, len(batchWitness.CreateUserOps)), + } + + for i := 0; i < len(witness.BeforeCexAssets); i++ { + witness.BeforeCexAssets[i].TotalEquity = batchWitness.BeforeCexAssets[i].TotalEquity + witness.BeforeCexAssets[i].TotalDebt = batchWitness.BeforeCexAssets[i].TotalDebt + witness.BeforeCexAssets[i].BasePrice = batchWitness.BeforeCexAssets[i].BasePrice + } + + for i := 0; i < len(witness.CreateUserOps); i++ { + witness.CreateUserOps[i].BeforeAccountTreeRoot = batchWitness.CreateUserOps[i].BeforeAccountTreeRoot + witness.CreateUserOps[i].AfterAccountTreeRoot = batchWitness.CreateUserOps[i].AfterAccountTreeRoot + witness.CreateUserOps[i].Assets = make([]UserAssetInfo, len(batchWitness.CreateUserOps[i].Assets)) + for j := 0; j < len(batchWitness.CreateUserOps[i].Assets); j++ { + var userAsset UserAssetInfo + userAsset.Equity = batchWitness.CreateUserOps[i].Assets[j].Equity + userAsset.Debt = batchWitness.CreateUserOps[i].Assets[j].Debt + witness.CreateUserOps[i].Assets[j] = userAsset + } + witness.CreateUserOps[i].AccountIdHash = batchWitness.CreateUserOps[i].AccountIdHash + witness.CreateUserOps[i].AccountIndex = batchWitness.CreateUserOps[i].AccountIndex + for j := 0; j < len(witness.CreateUserOps[i].AccountProof); j++ { + witness.CreateUserOps[i].AccountProof[j] = batchWitness.CreateUserOps[i].AccountProof[j] + } + } + return witness, nil +} diff --git a/circuit/constants.go b/circuit/constants.go new file mode 100644 index 0000000..a2e9a88 --- /dev/null +++ b/circuit/constants.go @@ -0,0 +1,8 @@ +package circuit + +import "math/big" + +var ( + // is poseidon hash(empty account info) + EmptyAccountLeafNodeHash, _ = new(big.Int).SetString("221970e0ba2d0b02a979e616cf186305372e73aab1e74f749772c9fef54dbf91", 16) +) diff --git a/circuit/types.go b/circuit/types.go new file mode 100644 index 0000000..e2eb1bb --- /dev/null +++ b/circuit/types.go @@ -0,0 +1,31 @@ +package circuit + +import ( + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "github.com/consensys/gnark/frontend" +) + +type ( + Variable = frontend.Variable + API = frontend.API +) + +type CexAssetInfo struct { + TotalEquity Variable + TotalDebt Variable + BasePrice Variable +} + +type UserAssetInfo struct { + Equity Variable + Debt Variable +} + +type CreateUserOperation struct { + BeforeAccountTreeRoot Variable + AfterAccountTreeRoot Variable + Assets []UserAssetInfo + AccountIndex Variable + AccountIdHash Variable + AccountProof [utils.AccountTreeDepth]Variable +} diff --git a/circuit/utils.go b/circuit/utils.go new file mode 100644 index 0000000..175d686 --- /dev/null +++ b/circuit/utils.go @@ -0,0 +1,57 @@ +package circuit + +import ( + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "github.com/consensys/gnark/std/hash/poseidon" +) + +func VerifyMerkleProof(api API, merkleRoot Variable, node Variable, proofSet, helper []Variable) { + for i := 0; i < len(proofSet); i++ { + api.AssertIsBoolean(helper[i]) + d1 := api.Select(helper[i], proofSet[i], node) + d2 := api.Select(helper[i], node, proofSet[i]) + node = poseidon.Poseidon(api, d1, d2) + } + // Compare our calculated Merkle root to the desired Merkle root. + api.AssertIsEqual(merkleRoot, node) +} + +func UpdateMerkleProof(api API, node Variable, proofSet, helper []Variable) (root Variable) { + for i := 0; i < len(proofSet); i++ { + api.AssertIsBoolean(helper[i]) + d1 := api.Select(helper[i], proofSet[i], node) + d2 := api.Select(helper[i], node, proofSet[i]) + node = poseidon.Poseidon(api, d1, d2) + } + root = node + return root +} + +func AccountIdToMerkleHelper(api API, accountId Variable) []Variable { + merkleHelpers := api.ToBinary(accountId, utils.AccountTreeDepth) + return merkleHelpers +} + +// check value is in [0, 2^64-1] range +func CheckValueInRange(api API, value Variable) { + api.ToBinary(value, 64) +} + +func ComputeUserAssetsCommitment(api API, assets []UserAssetInfo) Variable { + nEles := (len(assets)*2 + 2) / 3 + tmpUserAssets := make([]Variable, nEles) + flattenAssets := make([]Variable, nEles*3) + for i := 0; i < len(assets); i++ { + flattenAssets[2*i] = assets[i].Equity + flattenAssets[2*i+1] = assets[i].Debt + } + for i := len(assets) * 2; i < len(flattenAssets); i++ { + flattenAssets[i] = 0 + } + for i := 0; i < len(tmpUserAssets); i++ { + tmpUserAssets[i] = api.Add(api.Mul(flattenAssets[3*i], utils.Uint64MaxValueFrSquare), + api.Mul(flattenAssets[3*i+1], utils.Uint64MaxValueFr), flattenAssets[3*i+2]) + } + commitment := poseidon.Poseidon(api, tmpUserAssets...) + return commitment +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..d06ea99 --- /dev/null +++ b/go.mod @@ -0,0 +1,91 @@ +module github.com/binance/zkmerkle-proof-of-solvency + +go 1.18 + +require ( + github.com/aws/aws-sdk-go-v2 v1.17.3 + github.com/aws/aws-sdk-go-v2/config v1.1.1 + github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.15.1 + github.com/bnb-chain/zkbnb-smt v0.0.3-0.20221227064653-7422bfd51aa0 + github.com/consensys/gnark v0.7.0 + github.com/consensys/gnark-crypto v0.7.0 + github.com/go-redis/redis/v8 v8.11.5 + github.com/shopspring/decimal v1.3.1 + github.com/zeromicro/go-zero v1.4.2 + gorm.io/driver/postgres v1.4.5 + gorm.io/gorm v1.24.2 +) + +require ( + github.com/aws/aws-sdk-go-v2/credentials v1.1.1 // indirect + github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.0.2 // indirect + github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.6 // indirect + github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.0 // indirect + github.com/aws/aws-sdk-go-v2/internal/ini v1.3.28 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.0.2 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.1.1 // indirect + github.com/aws/aws-sdk-go-v2/service/sts v1.1.1 // indirect + github.com/aws/smithy-go v1.13.5 // indirect + github.com/beorn7/perks v1.0.1 // indirect + github.com/cenkalti/backoff/v4 v4.1.3 // indirect + github.com/cespare/xxhash/v2 v2.1.2 // indirect + github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect + github.com/ethereum/go-ethereum v1.10.26 // indirect + github.com/fatih/color v1.13.0 // indirect + github.com/fxamacker/cbor/v2 v2.4.0 // indirect + github.com/go-logr/logr v1.2.3 // indirect + github.com/go-logr/stdr v1.2.2 // indirect + github.com/gocarina/gocsv v0.0.0-20230123225133-763e25b40669 // indirect + github.com/golang/protobuf v1.5.2 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect + github.com/hashicorp/golang-lru v0.5.5-0.20221011183528-d4900dc688bf // indirect + github.com/jackc/chunkreader/v2 v2.0.1 // indirect + github.com/jackc/pgconn v1.13.0 // indirect + github.com/jackc/pgio v1.0.0 // indirect + github.com/jackc/pgpassfile v1.0.0 // indirect + github.com/jackc/pgproto3/v2 v2.3.1 // indirect + github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect + github.com/jackc/pgtype v1.12.0 // indirect + github.com/jackc/pgx/v4 v4.17.2 // indirect + github.com/jinzhu/inflection v1.0.0 // indirect + github.com/jinzhu/now v1.1.4 // indirect + github.com/mattn/go-colorable v0.1.9 // indirect + github.com/mattn/go-isatty v0.0.14 // indirect + github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect + github.com/mmcloughlin/addchain v0.4.0 // indirect + github.com/openzipkin/zipkin-go v0.4.0 // indirect + github.com/panjf2000/ants/v2 v2.5.0 // indirect + github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect + github.com/pelletier/go-toml/v2 v2.0.5 // indirect + github.com/pkg/errors v0.9.1 // indirect + github.com/prometheus/client_golang v1.13.0 // indirect + github.com/prometheus/client_model v0.2.0 // indirect + github.com/prometheus/common v0.37.0 // indirect + github.com/prometheus/procfs v0.8.0 // indirect + github.com/rs/zerolog v1.26.1 // indirect + github.com/spaolacci/murmur3 v1.1.0 // indirect + github.com/x448/float16 v0.8.4 // indirect + go.opentelemetry.io/otel v1.11.0 // indirect + go.opentelemetry.io/otel/exporters/jaeger v1.11.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.11.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.11.0 // indirect + go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.11.0 // indirect + go.opentelemetry.io/otel/exporters/zipkin v1.11.0 // indirect + go.opentelemetry.io/otel/sdk v1.11.0 // indirect + go.opentelemetry.io/otel/trace v1.11.0 // indirect + go.opentelemetry.io/proto/otlp v0.19.0 // indirect + go.uber.org/automaxprocs v1.5.1 // indirect + golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect + golang.org/x/net v0.0.0-20220607020251-c690dde0001d // indirect + golang.org/x/sys v0.2.0 // indirect + golang.org/x/text v0.3.7 // indirect + google.golang.org/genproto v0.0.0-20220602131408-e326c6e8e9c8 // indirect + google.golang.org/grpc v1.50.1 // indirect + google.golang.org/protobuf v1.28.1 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect +) + +replace ( + github.com/consensys/gnark => github.com/bnb-chain/gnark v0.7.1-0.20230203031713-0d81c67d080a + github.com/consensys/gnark-crypto => github.com/bnb-chain/gnark-crypto v0.7.1-0.20230203031630-7c643ad11891 +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..eb6c297 --- /dev/null +++ b/go.sum @@ -0,0 +1,1044 @@ +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= +cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= +cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= +cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= +cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= +cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= +cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= +cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= +cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= +cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= +cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= +cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= +cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= +cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= +cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= +cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= +cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= +cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= +cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= +cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= +cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= +cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= +cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= +cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= +cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= +cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= +cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= +cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= +dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= +github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= +github.com/Azure/go-autorest/autorest v0.11.18/go.mod h1:dSiJPy22c3u0OtOKDNttNgqpNFY/GeWa7GH/Pz56QRA= +github.com/Azure/go-autorest/autorest/adal v0.9.13/go.mod h1:W/MM4U6nLxnIskrw4UwWzlHfGjwUS50aOsc/I3yuU8M= +github.com/Azure/go-autorest/autorest/date v0.3.0/go.mod h1:BI0uouVdmngYNUzGWeSYnokU+TrmwEsOqdt8Y6sso74= +github.com/Azure/go-autorest/autorest/mocks v0.4.1/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k= +github.com/Azure/go-autorest/logger v0.2.1/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= +github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/ClickHouse/clickhouse-go v1.5.4/go.mod h1:EaI/sW7Azgz9UATzd5ZdZHRUhHgv5+JMS9NSr2smCJI= +github.com/ClickHouse/clickhouse-go/v2 v2.0.14/go.mod h1:iq2DUGgpA4BBki2CVwrF8x43zqBjdgHtbexkFkh5a6M= +github.com/DATA-DOG/go-sqlmock v1.5.0/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= +github.com/Masterminds/semver/v3 v3.1.1 h1:hLg3sBzpNErnxhQtUy/mmLR2I9foDujNK030IGemrRc= +github.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= +github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= +github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= +github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= +github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= +github.com/Shopify/sarama v1.30.0/go.mod h1:zujlQQx1kzHsh4jfV1USnptCQrHAEZ2Hk8fTKCulPVs= +github.com/Shopify/toxiproxy/v2 v2.1.6-0.20210914104332-15ea381dcdae/go.mod h1:/cvHQkZ1fst0EmZnA5dFtiQdWCNCFYzb+uE2vqVgvx0= +github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= +github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a h1:HbKu58rmZpUGpz5+4FfNmIU+FmZg2P3Xaj2v2bfNWmk= +github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a/go.mod h1:SGnFV6hVsYE877CKEZ6tDNTjaSXYUk6QqoIK6PrAtcc= +github.com/alicebob/miniredis/v2 v2.23.0 h1:+lwAJYjvvdIVg6doFHuotFjueJ/7KY10xo/vm3X3Scw= +github.com/alicebob/miniredis/v2 v2.23.0/go.mod h1:XNqvJdQJv5mSuVMc0ynneafpnL/zv52acZ6kqeS0t88= +github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= +github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= +github.com/aws/aws-sdk-go-v2 v1.2.0/go.mod h1:zEQs02YRBw1DjK0PoJv3ygDYOFTre1ejlJWl8FwAuQo= +github.com/aws/aws-sdk-go-v2 v1.15.0/go.mod h1:lJYcuZZEHWNIb6ugJjbQY1fykdoobWbOS7kJYb4APoI= +github.com/aws/aws-sdk-go-v2 v1.17.3 h1:shN7NlnVzvDUgPQ+1rLMSxY8OWRNDRYtiqe0p/PgrhY= +github.com/aws/aws-sdk-go-v2 v1.17.3/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= +github.com/aws/aws-sdk-go-v2/config v1.1.1 h1:ZAoq32boMzcaTW9bcUacBswAmHTbvlvDJICgHFZuECo= +github.com/aws/aws-sdk-go-v2/config v1.1.1/go.mod h1:0XsVy9lBI/BCXm+2Tuvt39YmdHwS5unDQmxZOYe8F5Y= +github.com/aws/aws-sdk-go-v2/credentials v1.1.1 h1:NbvWIM1Mx6sNPTxowHgS2ewXCRp+NGTzUYb/96FZJbY= +github.com/aws/aws-sdk-go-v2/credentials v1.1.1/go.mod h1:mM2iIjwl7LULWtS6JCACyInboHirisUUdkBPoTHMOUo= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.0.2 h1:EtEU7WRaWliitZh2nmuxEXrN0Cb8EgPUFGIoTMeqbzI= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.0.2/go.mod h1:3hGg3PpiEjHnrkrlasTfxFqUsZ2GCk/fMUn4CbKgSkM= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.6 h1:xiGjGVQsem2cxoIX61uRGy+Jux2s9C/kKbTrWLdrU54= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.6/go.mod h1:SSPEdf9spsFgJyhjrXvawfpyzrXHBCUe+2eQ1CjC1Ak= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.0 h1:bt3zw79tm209glISdMRCIVRCwvSDXxgAxh5KWe2qHkY= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.0/go.mod h1:viTrxhAuejD+LszDahzAE2x40YjYWhMqzHxv2ZiWaME= +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.28 h1:KeTxcGdNnQudb46oOl4d90f2I33DF/c6q3RnZAmvQdQ= +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.28/go.mod h1:yRZVr/iT0AqyHeep00SZ4YfBAKojXz08w3XMBscdi0c= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.0.2 h1:4AH9fFjUlVktQMznF+YN33aWNXaR4VgDXyP28qokJC0= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.0.2/go.mod h1:45MfaXZ0cNbeuT0KQ1XJylq8A6+OpVV2E5kvY/Kq+u8= +github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.15.1 h1:vS2T2QrEPdDAtgAEkw0H3PuQZ/xaWIiE/xQg/5l5G1M= +github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.15.1/go.mod h1:51oskAz9e7mRjiDg1tMXuDTp5MVyBfdrjMHp14/la4k= +github.com/aws/aws-sdk-go-v2/service/sso v1.1.1 h1:37QubsarExl5ZuCBlnRP+7l1tNwZPBSTqpTBrPH98RU= +github.com/aws/aws-sdk-go-v2/service/sso v1.1.1/go.mod h1:SuZJxklHxLAXgLTc1iFXbEWkXs7QRTQpCLGaKIprQW0= +github.com/aws/aws-sdk-go-v2/service/sts v1.1.1 h1:TJoIfnIFubCX0ACVeJ0w46HEH5MwjwYN4iFhuYIhfIY= +github.com/aws/aws-sdk-go-v2/service/sts v1.1.1/go.mod h1:Wi0EBZwiz/K44YliU0EKxqTCJGUfYTWXrrBwkq736bM= +github.com/aws/smithy-go v1.1.0/go.mod h1:EzMw8dbp/YJL4A5/sbhGddag+NPT7q084agLbB9LgIw= +github.com/aws/smithy-go v1.11.1/go.mod h1:3xHYmszWVx2c0kIwQeEVf9uSm4fYZt67FBJnwub1bgM= +github.com/aws/smithy-go v1.13.5 h1:hgz0X/DX0dGqTYpGALqXJoRKRj5oQ7150i5FdTePzO8= +github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= +github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= +github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bkaradzic/go-lz4 v1.0.0/go.mod h1:0YdlkowM3VswSROI7qDxhRvJ3sLhlFrRRwjwegp5jy4= +github.com/bnb-chain/gnark v0.7.1-0.20230203031713-0d81c67d080a h1:qXSqpE4WxfmvxBgFSSNLzl2oYWl5G1xGYkGcPJMpTys= +github.com/bnb-chain/gnark v0.7.1-0.20230203031713-0d81c67d080a/go.mod h1:dIiKXHFIJARfw+amakfjqOhw6myeLltyU1+RS8/ghl0= +github.com/bnb-chain/gnark-crypto v0.7.1-0.20230203031630-7c643ad11891 h1:fmLpwLm71xMeB+45ngpXioTt78aL6YGxubbnobNdoWQ= +github.com/bnb-chain/gnark-crypto v0.7.1-0.20230203031630-7c643ad11891/go.mod h1:KPSuJzyxkJA8xZ/+CV47tyqkr9MmpZA3PXivK4VPrVg= +github.com/bnb-chain/zkbnb-smt v0.0.3-0.20221227064653-7422bfd51aa0 h1:ctmwkpucisve1QBpCIgAH9hjYZGxbtyaCSh5yVM+F1s= +github.com/bnb-chain/zkbnb-smt v0.0.3-0.20221227064653-7422bfd51aa0/go.mod h1:QmQTsv2fxBsobFLFZkaiNmr3P0M/mm3W1AiwSU3/cGY= +github.com/cenkalti/backoff/v4 v4.1.3 h1:cFAlzYUlVYDysBEH2T5hyJZMh3+5+WCBvSnK6Q8UtC4= +github.com/cenkalti/backoff/v4 v4.1.3/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= +github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= +github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= +github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= +github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= +github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cloudflare/golz4 v0.0.0-20150217214814-ef862a3cdc58/go.mod h1:EOBUe0h4xcZ5GoxqC5SDxFQ8gwyZPKQoEzownBlhI80= +github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= +github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I= +github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= +github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f h1:lO4WD4F/rVNCu3HqELle0jiPLLBs70cWOduZpkS1E78= +github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cuUVRXasLTGF7a8hSLbxyZXjz+1KgoB3wDUb6vlszIc= +github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= +github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/eapache/go-resiliency v1.2.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= +github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= +github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= +github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= +github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= +github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= +github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= +github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= +github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= +github.com/ethereum/go-ethereum v1.10.26 h1:i/7d9RBBwiXCEuyduBQzJw/mKmnvzsN14jqBmytw72s= +github.com/ethereum/go-ethereum v1.10.26/go.mod h1:EYFyF19u3ezGLD4RqOkLq+ZCXzYbLoNDdZlMt7kyKFg= +github.com/evanphx/json-patch v4.11.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= +github.com/fatih/color v1.13.0 h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w= +github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= +github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= +github.com/form3tech-oss/jwt-go v3.2.3+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= +github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= +github.com/frankban/quicktest v1.11.3/go.mod h1:wRf/ReqHper53s+kmmSZizM8NamnL3IM0I9ntUbOk+k= +github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4= +github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= +github.com/fullstorydev/grpcurl v1.8.7/go.mod h1:pVtM4qe3CMoLaIzYS8uvTuDj2jVYmXqMUkZeijnXp/E= +github.com/fxamacker/cbor/v2 v2.4.0 h1:ri0ArlOR+5XunOP8CRUowT0pSJOwhW098ZCUyskZD88= +github.com/fxamacker/cbor/v2 v2.4.0/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= +github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8/go.mod h1:xkRDCp4j0OGD1HRkm4kmhM+pmpv3AKq5SU7GMg4oO/Q= +github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= +github.com/go-kit/log v0.2.0/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= +github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= +github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= +github.com/go-logr/logr v0.4.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= +github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/logr v1.2.3 h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0= +github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= +github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= +github.com/go-ole/go-ole v1.2.4/go.mod h1:XCwSNxSkXRo4vlyPy93sltvi/qJq0jqQhjqQNIwKuxM= +github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= +github.com/go-openapi/jsonreference v0.19.3/go.mod h1:rjx6GuL8TTa9VaixXglHmQmIL98+wF9xc8zWvFonSJ8= +github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= +github.com/go-redis/redis/v8 v8.11.5 h1:AcZZR7igkdvfVmQTPnu9WE37LRrO/YrBH5zWyjDC0oI= +github.com/go-redis/redis/v8 v8.11.5/go.mod h1:gREzHqY1hg6oD9ngVRbLStwAWKhA0FEgq8Jd4h5lpwo= +github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= +github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE= +github.com/gocarina/gocsv v0.0.0-20230123225133-763e25b40669 h1:MvZzCA/mduVWoBSVKJeMdv+AqXQmZZ8i6p8889ejt/Y= +github.com/gocarina/gocsv v0.0.0-20230123225133-763e25b40669/go.mod h1:5YoVOkjYAQumqlV356Hj3xeYh4BdZuLE0/nRkf2NKkI= +github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= +github.com/gofrs/uuid v4.0.0+incompatible h1:1SD/1F5pU8p29ybwgQSwpQk+mwdRrXCYuPhW6m+TnJw= +github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/golang-jwt/jwt/v4 v4.4.2/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ= +github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= +github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= +github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= +github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= +github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= +github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= +github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA= +github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= +github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg= +github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/subcommands v1.2.0/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk= +github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= +github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= +github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/googleapis/gnostic v0.5.1/go.mod h1:6U4PtQXGIEt/Z3h5MAT7FNofLnw9vXk2cUuW7uA/OeU= +github.com/googleapis/gnostic v0.5.5/go.mod h1:7+EbHbldMins07ALC74bsA81Ovc97DwqyJO1AENw9kA= +github.com/gorilla/handlers v1.4.2/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= +github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= +github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4= +github.com/gorilla/sessions v1.2.1/go.mod h1:dk2InVEVJ0sfLlnXv9EAgkf6ecYs/i80K/zI+bUmuGM= +github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= +github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 h1:BZHcxBETFHIdVyhyEfOvn/RdU/QGdLI4y34qQGjGWO0= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= +github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 h1:2VTzZjLZBgl62/EtslCrtky5vbi9dd7HrQPQIx6wqiw= +github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542/go.mod h1:Ow0tF8D4Kplbc8s8sSb3V2oUCygFHVp8gC3Dn6U4MNI= +github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= +github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.5-0.20221011183528-d4900dc688bf h1:BQyif+/dqmbIGXyGhe5bDx/3grIchislVu5pK7j/bMQ= +github.com/hashicorp/golang-lru v0.5.5-0.20221011183528-d4900dc688bf/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= +github.com/jackc/chunkreader v1.0.0/go.mod h1:RT6O25fNZIuasFJRyZ4R/Y2BbhasbmZXF9QQ7T3kePo= +github.com/jackc/chunkreader/v2 v2.0.0/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= +github.com/jackc/chunkreader/v2 v2.0.1 h1:i+RDz65UE+mmpjTfyz0MoVTnzeYxroil2G82ki7MGG8= +github.com/jackc/chunkreader/v2 v2.0.1/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= +github.com/jackc/pgconn v0.0.0-20190420214824-7e0022ef6ba3/go.mod h1:jkELnwuX+w9qN5YIfX0fl88Ehu4XC3keFuOJJk9pcnA= +github.com/jackc/pgconn v0.0.0-20190824142844-760dd75542eb/go.mod h1:lLjNuW/+OfW9/pnVKPazfWOgNfH2aPem8YQ7ilXGvJE= +github.com/jackc/pgconn v0.0.0-20190831204454-2fabfa3c18b7/go.mod h1:ZJKsE/KZfsUgOEh9hBm+xYTstcNHg7UPMVJqRfQxq4s= +github.com/jackc/pgconn v1.8.0/go.mod h1:1C2Pb36bGIP9QHGBYCjnyhqu7Rv3sGshaQUvmfGIB/o= +github.com/jackc/pgconn v1.9.0/go.mod h1:YctiPyvzfU11JFxoXokUOOKQXQmDMoJL9vJzHH8/2JY= +github.com/jackc/pgconn v1.9.1-0.20210724152538-d89c8390a530/go.mod h1:4z2w8XhRbP1hYxkpTuBjTS3ne3J48K83+u0zoyvg2pI= +github.com/jackc/pgconn v1.13.0 h1:3L1XMNV2Zvca/8BYhzcRFS70Lr0WlDg16Di6SFGAbys= +github.com/jackc/pgconn v1.13.0/go.mod h1:AnowpAqO4CMIIJNZl2VJp+KrkAZciAkhEl0W0JIobpI= +github.com/jackc/pgio v1.0.0 h1:g12B9UwVnzGhueNavwioyEEpAmqMe1E/BN9ES+8ovkE= +github.com/jackc/pgio v1.0.0/go.mod h1:oP+2QK2wFfUWgr+gxjoBH9KGBb31Eio69xUb0w5bYf8= +github.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2/go.mod h1:fGZlG77KXmcq05nJLRkk0+p82V8B8Dw8KN2/V9c/OAE= +github.com/jackc/pgmock v0.0.0-20201204152224-4fe30f7445fd/go.mod h1:hrBW0Enj2AZTNpt/7Y5rr2xe/9Mn757Wtb2xeBzPv2c= +github.com/jackc/pgmock v0.0.0-20210724152146-4ad1a8207f65 h1:DadwsjnMwFjfWc9y5Wi/+Zz7xoE5ALHsRQlOctkOiHc= +github.com/jackc/pgmock v0.0.0-20210724152146-4ad1a8207f65/go.mod h1:5R2h2EEX+qri8jOWMbJCtaPWkrrNc7OHwsp2TCqp7ak= +github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= +github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= +github.com/jackc/pgproto3 v1.1.0/go.mod h1:eR5FA3leWg7p9aeAqi37XOTgTIbkABlvcPB3E5rlc78= +github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190420180111-c116219b62db/go.mod h1:bhq50y+xrl9n5mRYyCBFKkpRVTLYJVWeCc+mEAI3yXA= +github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190609003834-432c2951c711/go.mod h1:uH0AWtUmuShn0bcesswc4aBTWGvw0cAxIJp+6OB//Wg= +github.com/jackc/pgproto3/v2 v2.0.0-rc3/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= +github.com/jackc/pgproto3/v2 v2.0.0-rc3.0.20190831210041-4c03ce451f29/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= +github.com/jackc/pgproto3/v2 v2.0.6/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= +github.com/jackc/pgproto3/v2 v2.1.1/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= +github.com/jackc/pgproto3/v2 v2.3.1 h1:nwj7qwf0S+Q7ISFfBndqeLwSwxs+4DPsbRFjECT1Y4Y= +github.com/jackc/pgproto3/v2 v2.3.1/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= +github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b h1:C8S2+VttkHFdOOCXJe+YGfa4vHYwlt4Zx+IVXQ97jYg= +github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E= +github.com/jackc/pgtype v0.0.0-20190421001408-4ed0de4755e0/go.mod h1:hdSHsc1V01CGwFsrv11mJRHWJ6aifDLfdV3aVjFF0zg= +github.com/jackc/pgtype v0.0.0-20190824184912-ab885b375b90/go.mod h1:KcahbBH1nCMSo2DXpzsoWOAfFkdEtEJpPbVLq8eE+mc= +github.com/jackc/pgtype v0.0.0-20190828014616-a8802b16cc59/go.mod h1:MWlu30kVJrUS8lot6TQqcg7mtthZ9T0EoIBFiJcmcyw= +github.com/jackc/pgtype v1.8.1-0.20210724151600-32e20a603178/go.mod h1:C516IlIV9NKqfsMCXTdChteoXmwgUceqaLfjg2e3NlM= +github.com/jackc/pgtype v1.12.0 h1:Dlq8Qvcch7kiehm8wPGIW0W3KsCCHJnRacKW0UM8n5w= +github.com/jackc/pgtype v1.12.0/go.mod h1:LUMuVrfsFfdKGLw+AFFVv6KtHOFMwRgDDzBt76IqCA4= +github.com/jackc/pgx/v4 v4.0.0-20190420224344-cc3461e65d96/go.mod h1:mdxmSJJuR08CZQyj1PVQBHy9XOp5p8/SHH6a0psbY9Y= +github.com/jackc/pgx/v4 v4.0.0-20190421002000-1b8f0016e912/go.mod h1:no/Y67Jkk/9WuGR0JG/JseM9irFbnEPbuWV2EELPNuM= +github.com/jackc/pgx/v4 v4.0.0-pre1.0.20190824185557-6972a5742186/go.mod h1:X+GQnOEnf1dqHGpw7JmHqHc1NxDoalibchSk9/RWuDc= +github.com/jackc/pgx/v4 v4.12.1-0.20210724153913-640aa07df17c/go.mod h1:1QD0+tgSXP7iUjYm9C1NxKhny7lq6ee99u/z+IHFcgs= +github.com/jackc/pgx/v4 v4.17.2 h1:0Ut0rpeKwvIVbMQ1KbMBU4h6wxehBI535LK6Flheh8E= +github.com/jackc/pgx/v4 v4.17.2/go.mod h1:lcxIZN44yMIrWI78a5CpucdD14hX0SBDbNRvjDBItsw= +github.com/jackc/puddle v0.0.0-20190413234325-e4ced69a3a2b/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jackc/puddle v0.0.0-20190608224051-11cab39313c9/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jackc/puddle v1.1.3/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jackc/puddle v1.3.0/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jcmturner/aescts/v2 v2.0.0/go.mod h1:AiaICIRyfYg35RUkr8yESTqvSy7csK90qZ5xfvvsoNs= +github.com/jcmturner/dnsutils/v2 v2.0.0/go.mod h1:b0TnjGOvI/n42bZa+hmXL+kFJZsFT7G4t3HTlQ184QM= +github.com/jcmturner/gofork v1.0.0/go.mod h1:MK8+TM0La+2rjBD4jE12Kj1pCCxK7d2LK/UM3ncEo0o= +github.com/jcmturner/goidentity/v6 v6.0.1/go.mod h1:X1YW3bgtvwAXju7V3LCIMpY0Gbxyjn/mY9zx4tFonSg= +github.com/jcmturner/gokrb5/v8 v8.4.2/go.mod h1:sb+Xq/fTY5yktf/VxLsE3wlfPqQjp0aWNYyvBVK62bc= +github.com/jcmturner/rpc/v2 v2.0.3/go.mod h1:VUJYCIDm3PVOEHw8sgt091/20OJjskO/YJki3ELg/Hc= +github.com/jhump/gopoet v0.0.0-20190322174617-17282ff210b3/go.mod h1:me9yfT6IJSlOL3FCfrg+L6yzUEZ+5jW6WHt4Sk+UPUI= +github.com/jhump/gopoet v0.1.0/go.mod h1:me9yfT6IJSlOL3FCfrg+L6yzUEZ+5jW6WHt4Sk+UPUI= +github.com/jhump/goprotoc v0.5.0/go.mod h1:VrbvcYrQOrTi3i0Vf+m+oqQWk9l72mjkJCYo7UvLHRQ= +github.com/jhump/protoreflect v1.11.0/go.mod h1:U7aMIjN0NWq9swDP7xDdoMfRHb35uiuTd3Z9nFXJf5E= +github.com/jhump/protoreflect v1.12.0/go.mod h1:JytZfP5d0r8pVNLZvai7U/MCuTWITgrI4tTg7puQFKI= +github.com/jhump/protoreflect v1.13.0/go.mod h1:JytZfP5d0r8pVNLZvai7U/MCuTWITgrI4tTg7puQFKI= +github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= +github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= +github.com/jinzhu/now v1.1.4 h1:tHnRBy1i5F2Dh8BAFxqFzxKqqvezXrL2OW1TnX+Mlas= +github.com/jinzhu/now v1.1.4/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= +github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= +github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= +github.com/jmoiron/sqlx v1.2.0/go.mod h1:1FEQNm3xlJgrMD+FBdI9+xvCksHtbpVBBw5dYhBSsks= +github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= +github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= +github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= +github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= +github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.1.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.10.2/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= +github.com/lib/pq v1.10.7 h1:p7ZhMD+KsSRozJr34udlUrhboJwWAgCg34+/ZZNvZZw= +github.com/lib/pq v1.10.7/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= +github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ= +github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.9 h1:sqDoxXbdeALODt0DAeJCVp38ps9ZogZEAXjus69YV3U= +github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y= +github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= +github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= +github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/mattn/go-sqlite3 v1.9.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= +github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI= +github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= +github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/mkevac/debugcharts v0.0.0-20191222103121-ae1c48aa8615/go.mod h1:Ad7oeElCZqA1Ufj0U9/liOF4BtVepxRcTvr2ey7zTvM= +github.com/mmcloughlin/addchain v0.4.0 h1:SobOdjm2xLj1KkXN5/n0xTIWyZA2+s99UCY1iPfkHRY= +github.com/mmcloughlin/addchain v0.4.0/go.mod h1:A86O+tHqZLMNO4w6ZZ4FlVQEadcoqkyU72HC5wJ4RlU= +github.com/mmcloughlin/profile v0.1.1/go.mod h1:IhHD7q1ooxgwTgjxQYkACGA77oFTDdFVejUS1/tS/qU= +github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= +github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= +github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32/go.mod h1:9wM+0iRr9ahx58uYLpLIr5fm8diHn0JbqRycJi6w0Ms= +github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= +github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= +github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= +github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= +github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= +github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= +github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= +github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0= +github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE= +github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042wbpU= +github.com/onsi/ginkgo/v2 v2.0.0/go.mod h1:vw5CSIxN1JObi/U8gcbwft7ZxR2dgaR70JSE3/PpL4c= +github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= +github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= +github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= +github.com/onsi/gomega v1.16.0/go.mod h1:HnhC7FXeEQY45zxNK3PPoIUhzk/80Xly9PcubAlGdZY= +github.com/onsi/gomega v1.17.0/go.mod h1:HnhC7FXeEQY45zxNK3PPoIUhzk/80Xly9PcubAlGdZY= +github.com/onsi/gomega v1.18.1/go.mod h1:0q+aL8jAiMXy9hbwj2mr5GziHiwhAIQpFmmtT5hitRs= +github.com/onsi/gomega v1.19.0 h1:4ieX6qQjPP/BfC3mpsAtIGGlxTWPeA3Inl/7DtXw1tw= +github.com/openzipkin/zipkin-go v0.4.0 h1:CtfRrOVZtbDj8rt1WXjklw0kqqJQwICrCKmlfUuBUUw= +github.com/openzipkin/zipkin-go v0.4.0/go.mod h1:4c3sLeE8xjNqehmF5RpAFLPLJxXscc0R4l6Zg0P1tTQ= +github.com/panjf2000/ants/v2 v2.5.0 h1:1rWGWSnxCsQBga+nQbA4/iY6VMeNoOIAM0ZWh9u3q2Q= +github.com/panjf2000/ants/v2 v2.5.0/go.mod h1:cU93usDlihJZ5CfRGNDYsiBYvoilLvBF5Qp/BT2GNRE= +github.com/paulmach/orb v0.5.0/go.mod h1:FWRlTgl88VI1RBx/MkrwWDRhQ96ctqMCh8boXhmqB/A= +github.com/paulmach/protoscan v0.2.1/go.mod h1:SpcSwydNLrxUGSDvXvO0P7g7AuhJ7lcKfDlhJCDw2gY= +github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 h1:onHthvaw9LFnH4t2DcNVpwGmV9E1BkGknEliJkfwQj0= +github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58/go.mod h1:DXv8WO4yhMYhSNPKjeNKa5WY9YCIEBRbNzFFPJbWO6Y= +github.com/pelletier/go-toml/v2 v2.0.5 h1:ipoSadvV8oGUjnUbMub59IDPPwfxF694nG/jwbMiyQg= +github.com/pelletier/go-toml/v2 v2.0.5/go.mod h1:OMHamSCAODeSsVrwwvcJOaoN0LIUIaFVNZzmWyNfXas= +github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= +github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pierrec/lz4 v2.6.1+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pierrec/lz4/v4 v4.1.14/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prashantv/gostub v1.1.0 h1:BTyx3RfQjRHnUWaGF9oQos79AlQ5k8WNktv7VGvVH4g= +github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= +github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= +github.com/prometheus/client_golang v1.11.1/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= +github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= +github.com/prometheus/client_golang v1.13.0 h1:b71QUfeo5M8gq2+evJdTPfZhYMAU0uKPkyPJ7TPsloU= +github.com/prometheus/client_golang v1.13.0/go.mod h1:vTeo+zgvILHsnnj/39Ou/1fPN5nJFOEMgftOUOmlvYQ= +github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= +github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= +github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= +github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= +github.com/prometheus/common v0.37.0 h1:ccBbHCgIiT9uSoFY0vX8H3zsNR5eLt17/RQLUvn8pXE= +github.com/prometheus/common v0.37.0/go.mod h1:phzohg0JFMnBEFGxTDbfu3QyL5GI8gTQJFhYO5B3mfA= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= +github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/prometheus/procfs v0.8.0 h1:ODq8ZFEaYeCaZOJlZZdJA2AbQR98dSHSM1KW/You5mo= +github.com/prometheus/procfs v0.8.0/go.mod h1:z7EfXMXOkbkqb9IINtpCn86r/to3BnA0uaxHdg830/4= +github.com/rabbitmq/amqp091-go v1.1.0/go.mod h1:ogQDLSOACsLPsIq0NpbtiifNZi2YOz0VTJ0kHRghqbM= +github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= +github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/rogpeppe/go-internal v1.8.1 h1:geMPLpDpQOgVyCg5z5GoRwLHepNdb71NXb67XFkP+Eg= +github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ= +github.com/rs/xid v1.3.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= +github.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OKkWU= +github.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc= +github.com/rs/zerolog v1.26.1 h1:/ihwxqH+4z8UxyI70wM1z9yCvkWcfz/a3mj48k/Zngc= +github.com/rs/zerolog v1.26.1/go.mod h1:/wSSJWX7lVrsOwlbyTRSOJvqRlc+WjWlfes+CiJ+tmc= +github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= +github.com/shirou/gopsutil v2.19.11+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= +github.com/shirou/gopsutil v3.21.11+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= +github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4/go.mod h1:qsXQc7+bwAM3Q1u/4XEfrquwF8Lw7D7y5cD8CuHnfIc= +github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4= +github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= +github.com/shopspring/decimal v1.3.1 h1:2Usl1nmF/WZucqkFZhnfFYxxxu8LG21F6nPQBE5gKV8= +github.com/shopspring/decimal v1.3.1/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= +github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= +github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= +github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= +github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= +github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI= +github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= +github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= +github.com/stretchr/objx v0.4.0 h1:M2gUjqZET1qApGOWNSnZ49BAIMX4F/1plDv3+l31EJ4= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 h1:epCh84lMvA70Z7CTTCmYQn2CKbY8j86K7/FAIr141uY= +github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= +github.com/tklauser/go-sysconf v0.3.10/go.mod h1:C8XykCvCb+Gn0oNCWPIlcb0RuglQTYaQ2hGm7jmxEFk= +github.com/tklauser/numcpus v0.4.0/go.mod h1:1+UI3pD8NW14VMwdgJNJ1ESk2UnwhAnz5hMwiKKqXCQ= +github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI= +github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= +github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= +github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI= +github.com/xdg-go/scram v1.0.2/go.mod h1:1WAq6h33pAW+iRreB34OORO2Nf7qel3VV3fjBj+hCSs= +github.com/xdg-go/scram v1.1.1/go.mod h1:RaEWvsqvNKKvBPvcKeFjrG2cJqOkHTiyTpzz23ni57g= +github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM= +github.com/xdg-go/stringprep v1.0.3/go.mod h1:W3f5j4i+9rC0kuIEJL0ky1VpHXQU3ocBgklLGvcBnW8= +github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= +github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.0/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9 h1:k/gmLsJDWwWqbLCur2yWnJzwQEKRcAHXo6seXGuSwWw= +github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9/go.mod h1:E1AXubJBdNmFERAOucpDIxNzeGfLzg0mYh+UfMWdChA= +github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q= +github.com/zeromicro/go-zero v1.4.2 h1:1P9TuzxONqxQG3Bvpk7r7vPOGEnfXn3lTX/4W5Y2GlQ= +github.com/zeromicro/go-zero v1.4.2/go.mod h1:OK8ilGkhRzhi1NRRC76h5qTNFm6NbsYrUqld38i4NF4= +go.etcd.io/etcd/api/v3 v3.5.5/go.mod h1:KFtNaxGDw4Yx/BA4iPPwevUTAuqcsPxzyX8PHydchN8= +go.etcd.io/etcd/client/pkg/v3 v3.5.5/go.mod h1:ggrwbk069qxpKPq8/FKkQ3Xq9y39kbFR4LnKszpRXeQ= +go.etcd.io/etcd/client/v3 v3.5.5/go.mod h1:aApjR4WGlSumpnJ2kloS75h6aHUmAyaPLjHMxpc7E7c= +go.mongodb.org/mongo-driver v1.10.3/go.mod h1:z4XpeoU6w+9Vht+jAFyLgVrD+jGSQQe0+CBWFHNiHt8= +go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= +go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= +go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opentelemetry.io/otel v1.7.0/go.mod h1:5BdUoMIz5WEs0vt0CUEMtSSaTSHBBVwrhnz7+nrD5xk= +go.opentelemetry.io/otel v1.11.0 h1:kfToEGMDq6TrVrJ9Vht84Y8y9enykSZzDDZglV0kIEk= +go.opentelemetry.io/otel v1.11.0/go.mod h1:H2KtuEphyMvlhZ+F7tg9GRhAOe60moNx61Ex+WmiKkk= +go.opentelemetry.io/otel/exporters/jaeger v1.11.0 h1:Sv2valcFfMlfu6g8USSS+ZUN5vwbuGj1aY/CFtMG33w= +go.opentelemetry.io/otel/exporters/jaeger v1.11.0/go.mod h1:nRgyJbgJ0hmaUdHwyDpTTfBYz61cTTeeGhVzfQc+FsI= +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.11.0 h1:0dly5et1i/6Th3WHn0M6kYiJfFNzhhxanrJ0bOfnjEo= +go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.11.0/go.mod h1:+Lq4/WkdCkjbGcBMVHHg2apTbv8oMBf29QCnyCCJjNQ= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.11.0 h1:eyJ6njZmH16h9dOKCi7lMswAnGsSOwgTqWzfxqcuNr8= +go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.11.0/go.mod h1:FnDp7XemjN3oZ3xGunnfOUTVwd2XcvLbtRAuOSU3oc8= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.11.0 h1:j2RFV0Qdt38XQ2Jvi4WIsQ56w8T7eSirYbMw19VXRDg= +go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.11.0/go.mod h1:pILgiTEtrqvZpoiuGdblDgS5dbIaTgDrkIuKfEFkt+A= +go.opentelemetry.io/otel/exporters/zipkin v1.11.0 h1:v/Abo5REOWrCj4zcEIUHFZtXpsCVjrwZj28iyX2rHXE= +go.opentelemetry.io/otel/exporters/zipkin v1.11.0/go.mod h1:unWnsLCMYfINP8ue0aXVrB/GYHoXNn/lbTnupvLekGQ= +go.opentelemetry.io/otel/sdk v1.11.0 h1:ZnKIL9V9Ztaq+ME43IUi/eo22mNsb6a7tGfzaOWB5fo= +go.opentelemetry.io/otel/sdk v1.11.0/go.mod h1:REusa8RsyKaq0OlyangWXaw97t2VogoO4SSEeKkSTAk= +go.opentelemetry.io/otel/trace v1.7.0/go.mod h1:fzLSB9nqR2eXzxPXb2JW9IKE+ScyXA48yyE4TNvoHqU= +go.opentelemetry.io/otel/trace v1.11.0 h1:20U/Vj42SX+mASlXLmSGBg6jpI1jQtv682lZtTAOVFI= +go.opentelemetry.io/otel/trace v1.11.0/go.mod h1:nyYjis9jy0gytE9LXGU+/m1sHTKbRY0fX0hulNNDP1U= +go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= +go.opentelemetry.io/proto/otlp v0.19.0 h1:IVN6GR+mhC4s5yfcTbmzHYODqvWAp3ZedA2SJPI1Nnw= +go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= +go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= +go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= +go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= +go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= +go.uber.org/automaxprocs v1.5.1 h1:e1YG66Lrk73dn4qhg8WFSvhF0JuFQF0ERIp4rpuV8Qk= +go.uber.org/automaxprocs v1.5.1/go.mod h1:BF4eumQw0P9GtnuxxovUd06vwm1o18oMzFtK66vU6XU= +go.uber.org/goleak v1.1.11/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ= +go.uber.org/goleak v1.1.12/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ= +go.uber.org/goleak v1.2.0 h1:xqgm/S+aQvhWFTtR0XK3Jvg7z8kGV8P4X14IzwN3Eqk= +go.uber.org/goleak v1.2.0/go.mod h1:XJYK+MuIchqpmGmUSAzotztawfKvYLUIgg7guXrwVUo= +go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= +go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= +go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU= +go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= +go.uber.org/multierr v1.8.0/go.mod h1:7EAYxJLBy9rStEaz58O2t4Uvip6FSURkq8/ppBp95ak= +go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= +go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= +go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= +go.uber.org/zap v1.21.0/go.mod h1:wjWOCqI0f2ZZrJF/UufIOkiC8ii6tm1iqIsLo76RfJw= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= +golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20201112155050-0c6587e931a9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20201203163018-be400aefbc4c/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= +golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= +golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20210920023735-84f357641f63/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20211215165025-cf75a172585e/go.mod h1:P+XmwS30IXTQdn5tA2iutPOUgjI07+tq3H3K9MVA1s8= +golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa h1:zuSxTR4o9y82ebqCUJYNGJbGPo6sKVl54f/TVDObg1c= +golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= +golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= +golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= +golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= +golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= +golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= +golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= +golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= +golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= +golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= +golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= +golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk= +golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210917221730-978cfadd31cf/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211209124913-491a49abca63/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220531201128-c960675eff93/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220607020251-c690dde0001d h1:4SFsTMi4UahlKoloni7L4eYzhFRifURQLw+yv0QDCx8= +golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190204203706-41f3e6584952/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191220220014-0732a990476f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220429233432-b5fbb4746d32/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.2.0 h1:ljd4t30dBnAvMZaQCevtY0xLLD0A+bRZXbgLMLU1F/A= +golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20220411224347-583f2d630306/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190425163242-31fd60d6bfdc/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190823170909-c4a336ef6a2f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= +golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.7/go.mod h1:LGqMHiF4EqQNHR1JncWGqT5BVaXmza+X+BDGol+dOxo= +golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= +google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= +google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= +google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= +google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= +google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= +google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220602131408-e326c6e8e9c8 h1:qRu95HZ148xXw+XeZ3dvqe85PxH4X8+jIo0iRPKcEnM= +google.golang.org/genproto v0.0.0-20220602131408-e326c6e8e9c8/go.mod h1:yKyY4AMRwFiC8yMMNaMi+RkCnjZJt9LoWuvhXjMs+To= +google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= +google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= +google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= +google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= +google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= +google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.41.0/go.mod h1:U3l9uK9J0sini8mHphKoXyaqDA/8VyGnDee1zzIUK6k= +google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= +google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.50.1 h1:DS/BukOZWp8s6p4Dt/tOaJaTQyPyOoCcrjroHuCeLzY= +google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= +google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= +google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= +gopkg.in/cheggaaa/pb.v1 v1.0.28/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= +gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= +gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= +gopkg.in/h2non/gock.v1 v1.1.2 h1:jBbHXgGBK/AoPVfJh5x4r/WxIrElvbLel8TCZkkZJoY= +gopkg.in/h2non/gock.v1 v1.1.2/go.mod h1:n7UGz/ckNChHiK05rDoiC4MYSunEC/lyaUm2WWaDva0= +gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s= +gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gorm.io/driver/postgres v1.4.5 h1:mTeXTTtHAgnS9PgmhN2YeUbazYpLhUI1doLnw42XUZc= +gorm.io/driver/postgres v1.4.5/go.mod h1:GKNQYSJ14qvWkvPwXljMGehpKrhlDNsqYRr5HnYGncg= +gorm.io/gorm v1.24.1-0.20221019064659-5dd2bb482755/go.mod h1:DVrVomtaYTbqs7gB/x2uVvqnXzv0nqjB396B8cG4dBA= +gorm.io/gorm v1.24.2 h1:9wR6CFD+G8nOusLdvkZelOEhpJVwwHzpQOUM+REd6U0= +gorm.io/gorm v1.24.2/go.mod h1:DVrVomtaYTbqs7gB/x2uVvqnXzv0nqjB396B8cG4dBA= +honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= +honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +k8s.io/api v0.22.9/go.mod h1:rcjO/FPOuvc3x7nQWx29UcDrFJMx82RxDob71ntNH4A= +k8s.io/apimachinery v0.22.9/go.mod h1:ZvVLP5iLhwVFg2Yx9Gh5W0um0DUauExbRhe+2Z8I1EU= +k8s.io/client-go v0.22.9/go.mod h1:IoH7exYnoH/zgvHOuVxh2c4yJepcCBt72FzCTisOc4k= +k8s.io/gengo v0.0.0-20200413195148-3a45101e95ac/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= +k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE= +k8s.io/klog/v2 v2.9.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec= +k8s.io/klog/v2 v2.40.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= +k8s.io/kube-openapi v0.0.0-20211109043538-20434351676c/go.mod h1:vHXdDvt9+2spS2Rx9ql3I8tycm3H9FDfdUoIuKCefvw= +k8s.io/utils v0.0.0-20211116205334-6203023598ed/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= +k8s.io/utils v0.0.0-20220706174534-f6158b442e7c h1:hFZO68mv/0xe8+V0gRT9BAq3/31cKjjeVv4nScriuBk= +k8s.io/utils v0.0.0-20220706174534-f6158b442e7c/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= +rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= +rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= +sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= +sigs.k8s.io/structured-merge-diff/v4 v4.2.1/go.mod h1:j/nl6xW8vLS49O8YvXW1ocPhZawJtm+Yrr7PPRQ0Vg4= +sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc= diff --git a/src/dbtool/config/config.go b/src/dbtool/config/config.go new file mode 100644 index 0000000..7c1aa90 --- /dev/null +++ b/src/dbtool/config/config.go @@ -0,0 +1,12 @@ +package config + +type Config struct { + PostgresDataSource string + DbSuffix string + TreeDB struct { + Driver string + Option struct { + Addr string + } + } +} diff --git a/src/dbtool/config/config.json b/src/dbtool/config/config.json new file mode 100644 index 0000000..970ca70 --- /dev/null +++ b/src/dbtool/config/config.json @@ -0,0 +1,10 @@ +{ + "PostgresDataSource" : "host=127.0.0.1 user=postgres password=zkpos@123 dbname=zkpos port=5432 sslmode=disable", + "DbSuffix": "0", + "TreeDB": { + "Driver": "redis", + "Option": { + "Addr": "127.0.0.1:6666" + } + } +} diff --git a/src/dbtool/main.go b/src/dbtool/main.go new file mode 100644 index 0000000..ab8fbd6 --- /dev/null +++ b/src/dbtool/main.go @@ -0,0 +1,148 @@ +package main + +import ( + "context" + "encoding/json" + "flag" + "fmt" + "github.com/binance/zkmerkle-proof-of-solvency/src/dbtool/config" + "github.com/binance/zkmerkle-proof-of-solvency/src/prover/prover" + "github.com/binance/zkmerkle-proof-of-solvency/src/userproof/model" + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "github.com/binance/zkmerkle-proof-of-solvency/src/witness/witness" + "github.com/go-redis/redis/v8" + "gorm.io/driver/postgres" + "gorm.io/gorm" + "gorm.io/gorm/logger" + "io/ioutil" + "log" + "os" + "time" +) + +func main() { + dbtoolConfig := &config.Config{} + content, err := ioutil.ReadFile("config/config.json") + if err != nil { + panic(err.Error()) + } + err = json.Unmarshal(content, dbtoolConfig) + if err != nil { + panic(err.Error()) + } + + onlyFlushKvrocks := flag.Bool("only_delete_kvrocks", false, "only delete kvrocks") + deleteAllData := flag.Bool("delete_all", false, "delete kvrocks and postgresql data") + checkProverStatus := flag.Bool("check_prover_status", false, "check prover status") + remotePasswdConfig := flag.String("remote_password_config", "", "fetch password from aws secretsmanager") + queryCexAssetsConfig := flag.Bool("query_cex_assets", false, "query cex assets info") + + flag.Parse() + + if *remotePasswdConfig != "" { + s, err := utils.GetPostgresqlSource(dbtoolConfig.PostgresDataSource, *remotePasswdConfig) + if err != nil { + panic(err.Error()) + } + dbtoolConfig.PostgresDataSource = s + } + if *deleteAllData { + db, err := gorm.Open(postgres.Open(dbtoolConfig.PostgresDataSource)) + if err != nil { + panic(err.Error()) + } + witnessModel := witness.NewWitnessModel(db, dbtoolConfig.DbSuffix) + err = witnessModel.DropBatchWitnessTable() + if err != nil { + fmt.Println("drop witness table failed") + panic(err.Error()) + } + fmt.Println("drop witness table successfully") + + proofModel := prover.NewProofModel(db, dbtoolConfig.DbSuffix) + err = proofModel.DropProofTable() + if err != nil { + fmt.Println("drop proof table failed") + panic(err.Error()) + } + fmt.Println("drop proof table successfully") + + userProofModel := model.NewUserProofModel(db, dbtoolConfig.DbSuffix) + err = userProofModel.DropUserProofTable() + if err != nil { + fmt.Println("drop userproof table failed") + panic(err.Error()) + } + fmt.Println("drop userproof table successfully") + } + + if *deleteAllData || *onlyFlushKvrocks { + client := redis.NewClient(&redis.Options{ + Addr: dbtoolConfig.TreeDB.Option.Addr, + PoolSize: 500, + MaxRetries: 5, + MinRetryBackoff: 8 * time.Millisecond, + MaxRetryBackoff: 512 * time.Millisecond, + DialTimeout: 10 * time.Second, + ReadTimeout: 10 * time.Second, + WriteTimeout: 10 * time.Second, + PoolTimeout: 15 * time.Second, + IdleTimeout: 5 * time.Minute, + }) + client.FlushAll(context.Background()) + fmt.Println("kvrocks data drop successfully") + } + + if *checkProverStatus { + newLogger := logger.New( + log.New(os.Stdout, "\r\n", log.LstdFlags), // io writer + logger.Config{ + SlowThreshold: 60 * time.Second, // Slow SQL threshold + LogLevel: logger.Silent, // Log level + IgnoreRecordNotFoundError: true, // Ignore ErrRecordNotFound error for logger + Colorful: false, // Disable color + }, + ) + db, err := gorm.Open(postgres.Open(dbtoolConfig.PostgresDataSource), &gorm.Config{ + Logger: newLogger, + }) + if err != nil { + panic(err.Error()) + } + witnessModel := witness.NewWitnessModel(db, dbtoolConfig.DbSuffix) + proofModel := prover.NewProofModel(db, dbtoolConfig.DbSuffix) + + witnessCounts, err := witnessModel.GetRowCounts() + if err != nil { + panic(err.Error()) + } + proofCounts, err := proofModel.GetRowCounts() + fmt.Printf("Total witness item %d, Published item %d, Pending item %d, Finished item %d\n", witnessCounts[0], witnessCounts[1], witnessCounts[2], witnessCounts[3]) + fmt.Println(witnessCounts[0] - proofCounts) + } + + if *queryCexAssetsConfig { + db, err := gorm.Open(postgres.Open(dbtoolConfig.PostgresDataSource)) + if err != nil { + panic(err.Error()) + } + witnessModel := witness.NewWitnessModel(db, dbtoolConfig.DbSuffix) + latestWitness, err := witnessModel.GetLatestBatchWitness() + if err != nil { + panic(err.Error()) + } + witness := utils.DecodeBatchWitness(latestWitness.WitnessData) + if witness == nil { + panic("decode invalid witness data") + } + cexAssetsInfo := utils.RecoverAfterCexAssets(witness) + var newAssetsInfo []utils.CexAssetInfo + for i := 0; i < len(cexAssetsInfo); i++ { + if cexAssetsInfo[i].BasePrice != 0 { + newAssetsInfo = append(newAssetsInfo, cexAssetsInfo[i]) + } + } + cexAssetsInfoBytes, _ := json.Marshal(newAssetsInfo) + fmt.Println(string(cexAssetsInfoBytes)) + } +} diff --git a/src/keygen/main.go b/src/keygen/main.go new file mode 100644 index 0000000..b674403 --- /dev/null +++ b/src/keygen/main.go @@ -0,0 +1,37 @@ +package main + +import ( + "fmt" + "github.com/binance/zkmerkle-proof-of-solvency/circuit" + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "github.com/consensys/gnark-crypto/ecc" + "github.com/consensys/gnark/backend/groth16" + "github.com/consensys/gnark/frontend" + "github.com/consensys/gnark/frontend/cs/r1cs" + "runtime" + "strconv" + "time" +) + +func main() { + circuit := circuit.NewBatchCreateUserCircuit(utils.AssetCounts, utils.BatchCreateUserOpsCounts) + oR1cs, err := frontend.Compile(ecc.BN254, r1cs.NewBuilder, circuit, frontend.IgnoreUnconstrainedInputs()) + if err != nil { + panic(err) + } + go func() { + for { + select { + case <-time.After(time.Second * 10): + runtime.GC() + } + } + }() + fmt.Println(oR1cs.GetNbVariables()) + zkKeyName := "zkpor" + strconv.FormatInt(utils.BatchCreateUserOpsCounts, 10) + fmt.Printf("Number of constraints: %d\n", oR1cs.GetNbConstraints()) + err = groth16.SetupLazyWithDump(oR1cs, zkKeyName) + if err != nil { + panic(err) + } +} diff --git a/src/prover/config/config.go b/src/prover/config/config.go new file mode 100644 index 0000000..04d6805 --- /dev/null +++ b/src/prover/config/config.go @@ -0,0 +1,12 @@ +package config + +type Config struct { + PostgresDataSource string + DbSuffix string + Redis struct { + Host string + Type string + Password string + } + ZkKeyName string +} diff --git a/src/prover/config/config.json b/src/prover/config/config.json new file mode 100644 index 0000000..a0e0fff --- /dev/null +++ b/src/prover/config/config.json @@ -0,0 +1,9 @@ +{ + "PostgresDataSource" : "host=127.0.0.1 user=postgres password=zkpos@123 dbname=zkpos port=5432 sslmode=disable", + "Redis": { + "Host": "127.0.0.1:6379", + "Type": "node" + }, + "DbSuffix": "0", + "ZkKeyName": "/server/data/.keys/zkpor864" +} diff --git a/src/prover/main.go b/src/prover/main.go new file mode 100644 index 0000000..425d895 --- /dev/null +++ b/src/prover/main.go @@ -0,0 +1,34 @@ +package main + +import ( + "encoding/json" + "flag" + "github.com/binance/zkmerkle-proof-of-solvency/src/prover/config" + "github.com/binance/zkmerkle-proof-of-solvency/src/prover/prover" + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "io/ioutil" +) + +func main() { + proverConfig := &config.Config{} + content, err := ioutil.ReadFile("config/config.json") + if err != nil { + panic(err.Error()) + } + err = json.Unmarshal(content, proverConfig) + if err != nil { + panic(err.Error()) + } + remotePasswdConfig := flag.String("remote_password_config", "", "fetch password from aws secretsmanager") + rerun := flag.Bool("rerun", false, "flag which indicates rerun proof generation") + flag.Parse() + if *remotePasswdConfig != "" { + s, err := utils.GetPostgresqlSource(proverConfig.PostgresDataSource, *remotePasswdConfig) + if err != nil { + panic(err.Error()) + } + proverConfig.PostgresDataSource = s + } + prover := prover.NewProver(proverConfig) + prover.Run(*rerun) +} diff --git a/src/prover/prover/proof_model.go b/src/prover/prover/proof_model.go new file mode 100644 index 0000000..da79999 --- /dev/null +++ b/src/prover/prover/proof_model.go @@ -0,0 +1,133 @@ +package prover + +import ( + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "gorm.io/gorm" +) + +const ( + TableNamePrefix = "proof" +) + +type ( + ProofModel interface { + CreateProofTable() error + DropProofTable() error + CreateProof(row *Proof) error + GetProofsBetween(start int64, end int64) (proofs []*Proof, err error) + GetLatestProof() (p *Proof, err error) + GetLatestConfirmedProof() (p *Proof, err error) + GetProofByBatchNumber(height int64) (p *Proof, err error) + GetProofNumber() (count int64) + GetRowCounts() (count int64, err error) + } + + defaultProofModel struct { + table string + DB *gorm.DB + } + + Proof struct { + gorm.Model + ProofInfo string + CexAssetListCommitments string + AccountTreeRoots string + BatchCommitment string + BatchNumber int64 `gorm:"index:idx_number,unique"` + } +) + +func (m *defaultProofModel) TableName() string { + return m.table +} + +func NewProofModel(db *gorm.DB, suffix string) ProofModel { + return &defaultProofModel{ + table: TableNamePrefix + suffix, + DB: db, + } +} + +func (m *defaultProofModel) CreateProofTable() error { + return m.DB.Table(m.table).AutoMigrate(Proof{}) +} + +func (m *defaultProofModel) DropProofTable() error { + return m.DB.Migrator().DropTable(m.table) +} + +func (m *defaultProofModel) CreateProof(row *Proof) error { + dbTx := m.DB.Table(m.table).Create(row) + if dbTx.Error != nil { + return dbTx.Error + } + if dbTx.RowsAffected == 0 { + return utils.DbErrSqlOperation + } + return nil +} + +func (m *defaultProofModel) GetProofsBetween(start int64, end int64) (proofs []*Proof, err error) { + dbTx := m.DB.Debug().Table(m.table).Where("batch_number >= ? AND batch_number <= ?", + start, + end). + Order("batch_number"). + Find(&proofs) + + if dbTx.Error != nil { + return proofs, utils.DbErrSqlOperation + } else if dbTx.RowsAffected == 0 { + return nil, utils.DbErrNotFound + } + + return proofs, err +} + +func (m *defaultProofModel) GetLatestProof() (p *Proof, err error) { + var row *Proof + dbTx := m.DB.Table(m.table).Order("batch_number desc").Limit(1).Find(&row) + if dbTx.Error != nil { + return nil, utils.DbErrSqlOperation + } else if dbTx.RowsAffected == 0 { + return nil, utils.DbErrNotFound + } else { + return row, nil + } +} + +func (m *defaultProofModel) GetLatestConfirmedProof() (p *Proof, err error) { + var row *Proof + dbTx := m.DB.Table(m.table).Order("batch_number desc").Limit(1).Find(&row) + if dbTx.Error != nil { + return nil, utils.DbErrSqlOperation + } else if dbTx.RowsAffected == 0 { + return nil, utils.DbErrNotFound + } else { + return row, nil + } +} + +func (m *defaultProofModel) GetProofByBatchNumber(num int64) (p *Proof, err error) { + var row *Proof + dbTx := m.DB.Table(m.table).Where("batch_number = ?", num).Find(&row) + if dbTx.Error != nil { + return nil, utils.DbErrSqlOperation + } else if dbTx.RowsAffected == 0 { + return nil, utils.DbErrNotFound + } else { + return row, nil + } +} + +func (m *defaultProofModel) GetProofNumber() (count int64) { + m.DB.Raw("select count(*) from " + m.table).Count(&count) + return count +} + +func (m *defaultProofModel) GetRowCounts() (count int64, err error) { + dbTx := m.DB.Table(m.table).Count(&count) + if dbTx.Error != nil { + return 0, dbTx.Error + } + return count, nil +} diff --git a/src/prover/prover/prover.go b/src/prover/prover/prover.go new file mode 100644 index 0000000..d0cd07e --- /dev/null +++ b/src/prover/prover/prover.go @@ -0,0 +1,270 @@ +package prover + +import ( + "bytes" + "encoding/base64" + "encoding/json" + "errors" + "fmt" + "github.com/binance/zkmerkle-proof-of-solvency/circuit" + "github.com/binance/zkmerkle-proof-of-solvency/src/prover/config" + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "github.com/binance/zkmerkle-proof-of-solvency/src/witness/witness" + "github.com/consensys/gnark-crypto/ecc" + "github.com/consensys/gnark/backend/groth16" + "github.com/consensys/gnark/frontend" + "github.com/consensys/gnark/std" + "github.com/zeromicro/go-zero/core/logx" + "github.com/zeromicro/go-zero/core/stores/redis" + "gorm.io/driver/postgres" + "gorm.io/gorm" + "os" + "runtime" + "time" +) + +func WithRedis(redisType string, redisPass string) redis.Option { + return func(p *redis.Redis) { + p.Type = redisType + p.Pass = redisPass + } +} + +type Prover struct { + witnessModel witness.WitnessModel + proofModel ProofModel + redisConn *redis.Redis + + VerifyingKeys groth16.VerifyingKey + ProvingKeys []groth16.ProvingKey + SessionName string + R1cs frontend.CompiledConstraintSystem +} + +func NewProver(config *config.Config) *Prover { + redisConn := redis.New(config.Redis.Host, WithRedis(config.Redis.Type, config.Redis.Password)) + db, err := gorm.Open(postgres.Open(config.PostgresDataSource)) + if err != nil { + panic(err.Error()) + } + prover := Prover{ + witnessModel: witness.NewWitnessModel(db, config.DbSuffix), + proofModel: NewProofModel(db, config.DbSuffix), + redisConn: redisConn, + SessionName: config.ZkKeyName, + } + + std.RegisterHints() + fmt.Println("begin loading r1cs...") + loadR1csChan := make(chan bool) + go func() { + for { + + select { + case <-loadR1csChan: + fmt.Println("load r1cs finished...... quit") + return + case <-time.After(time.Second * 10): + runtime.GC() + } + } + }() + prover.R1cs, err = groth16.LoadR1CSFromFile(config.ZkKeyName) + if err != nil { + panic("r1cs init error") + } + loadR1csChan <- true + runtime.GC() + fmt.Println("finish loading r1cs...") + // read proving and verifying keys + fmt.Println("begin loading proving key...") + prover.ProvingKeys, err = LoadProvingKey(config.ZkKeyName) + if err != nil { + panic("provingKey loading error") + } + fmt.Println("finish loading proving key...") + fmt.Println("begin loading verifying key...") + prover.VerifyingKeys, err = LoadVerifyingKey(config.ZkKeyName) + if err != nil { + panic("verifyingKey loading error") + } + fmt.Println("finish loading verifying key...") + return &prover +} + +func (p *Prover) Run(flag bool) { + // TODO remove + p.proofModel.CreateProofTable() + batchWitnessFetch := func() (*witness.BatchWitness, error) { + lock := utils.GetRedisLockByKey(p.redisConn, utils.RedisLockKey) + err := utils.TryAcquireLock(lock) + if err != nil { + return nil, utils.GetRedisLockFailed + } + //nolint:errcheck + defer lock.Release() + + // Fetch unproved block witness. + blockWitness, err := p.witnessModel.GetLatestBatchWitnessByStatus(witness.StatusPublished) + if err != nil { + return nil, err + } + // Update status of block witness. + err = p.witnessModel.UpdateBatchWitnessStatus(blockWitness, witness.StatusReceived) + if err != nil { + return nil, err + } + return blockWitness, nil + } + + batchWitnessFetchForRerun := func() (*witness.BatchWitness, error) { + blockWitness, err := p.witnessModel.GetLatestBatchWitnessByStatus(witness.StatusReceived) + if err != nil { + return nil, err + } + return blockWitness, nil + } + + for { + var batchWitness *witness.BatchWitness + var err error + if !flag { + batchWitness, err = batchWitnessFetch() + if errors.Is(err, utils.GetRedisLockFailed) { + fmt.Println("get redis lock failed") + continue + } + if errors.Is(err, utils.DbErrNotFound) { + fmt.Println("there is no published status witness in db, so quit") + fmt.Println("prover run finish...") + return + } + if err != nil { + fmt.Println("get batch witness failed: ", err.Error()) + return + } + } else { + batchWitness, err = batchWitnessFetchForRerun() + if errors.Is(err, utils.DbErrNotFound) { + fmt.Println("there is no received status witness in db, so quit") + fmt.Println("prover rerun finish...") + return + } + if err != nil { + fmt.Println("something wrong happened, err is ", err.Error()) + return + } + } + + witnessForCircuit := utils.DecodeBatchWitness(batchWitness.WitnessData) + cexAssetListCommitments := make([][]byte, 2) + cexAssetListCommitments[0] = witnessForCircuit.BeforeCEXAssetsCommitment + cexAssetListCommitments[1] = witnessForCircuit.AfterCEXAssetsCommitment + accountTreeRoots := make([][]byte, 2) + accountTreeRoots[0] = witnessForCircuit.BeforeAccountTreeRoot + accountTreeRoots[1] = witnessForCircuit.AfterAccountTreeRoot + cexAssetListCommitmentsSerial, err := json.Marshal(cexAssetListCommitments) + if err != nil { + fmt.Println("marshal cex asset list failed: ", err.Error()) + return + } + accountTreeRootsSerial, err := json.Marshal(accountTreeRoots) + if err != nil { + fmt.Println("marshal account tree root failed: ", err.Error()) + return + } + proof, err := GenerateAndVerifyProof(p.R1cs, p.ProvingKeys, p.VerifyingKeys, witnessForCircuit, p.SessionName, batchWitness.Height) + if err != nil { + fmt.Println("generate and verify proof error:", err.Error()) + } + var buf bytes.Buffer + _, err = proof.WriteRawTo(&buf) + if err != nil { + fmt.Println("proof serialize failed") + return + } + proofBytes := buf.Bytes() + //formateProof, _ := FormatProof(proof, witnessForCircuit.BatchCommitment) + //proofBytes, err := json.Marshal(formateProof) + //if err != nil { + // fmt.Println("marshal batch proof failed: ", err.Error()) + // return + //} + + // Check the existence of block proof. + _, err = p.proofModel.GetProofByBatchNumber(batchWitness.Height) + if err == nil { + fmt.Printf("blockProof of height %d exists\n", batchWitness.Height) + continue + } + + var row = &Proof{ + ProofInfo: base64.StdEncoding.EncodeToString(proofBytes), + BatchNumber: batchWitness.Height, + CexAssetListCommitments: string(cexAssetListCommitmentsSerial), + AccountTreeRoots: string(accountTreeRootsSerial), + BatchCommitment: base64.StdEncoding.EncodeToString(witnessForCircuit.BatchCommitment), + } + err = p.proofModel.CreateProof(row) + if err != nil { + fmt.Printf("create blockProof of height %d failed\n", batchWitness.Height) + return + } + err = p.witnessModel.UpdateBatchWitnessStatus(batchWitness, witness.StatusFinished) + if err != nil { + fmt.Println("update witness error:", err.Error()) + } + } +} + +func LoadProvingKey(filepath string) (pks []groth16.ProvingKey, err error) { + logx.Info("start reading proving key") + return groth16.ReadSegmentProveKey(filepath) +} + +func LoadVerifyingKey(filepath string) (verifyingKey groth16.VerifyingKey, err error) { + verifyingKey = groth16.NewVerifyingKey(ecc.BN254) + f, _ := os.Open(filepath + ".vk.save") + _, err = verifyingKey.ReadFrom(f) + if err != nil { + return verifyingKey, fmt.Errorf("read file error") + } + f.Close() + return verifyingKey, nil +} + +func GenerateAndVerifyProof(r1cs frontend.CompiledConstraintSystem, + provingKey []groth16.ProvingKey, + verifyingKey groth16.VerifyingKey, + batchWitness *utils.BatchCreateUserWitness, + zkKeyName string, + batchNumber int64, +) (proof groth16.Proof, err error) { + startTime := time.Now().UnixMilli() + fmt.Println("begin to generate proof for batch: ", batchNumber) + circuitWitness, _ := circuit.SetBatchCreateUserCircuitWitness(batchWitness) + verifyWitness := circuit.NewVerifyBatchCreateUserCircuit(batchWitness.BatchCommitment) + witness, err := frontend.NewWitness(circuitWitness, ecc.BN254) + if err != nil { + return proof, err + } + + vWitness, err := frontend.NewWitness(verifyWitness, ecc.BN254, frontend.PublicOnly()) + if err != nil { + return proof, err + } + proof, err = groth16.ProveRoll(r1cs, provingKey[0], provingKey[1], witness, zkKeyName) + if err != nil { + return proof, err + } + endTime := time.Now().UnixMilli() + fmt.Println("proof generation cost ", endTime-startTime, " ms") + + err = groth16.Verify(proof, verifyingKey, vWitness) + if err != nil { + return proof, err + } + endTime2 := time.Now().UnixMilli() + fmt.Println("proof verification cost ", endTime2-endTime, " ms") + return proof, nil +} diff --git a/src/sampledata/sample_users0.csv b/src/sampledata/sample_users0.csv new file mode 100644 index 0000000..b695cfd --- /dev/null +++ b/src/sampledata/sample_users0.csv @@ -0,0 +1,101 @@ +rn,id,e_1inch,d_1inch,1inch,e_aave,d_aave,aave,e_ach,d_ach,ach,e_acm,d_acm,acm,e_ada,d_ada,ada,e_adx,d_adx,adx,e_aergo,d_aergo,aergo,e_agld,d_agld,agld,e_akro,d_akro,akro,e_alcx,d_alcx,alcx,e_algo,d_algo,algo,e_alice,d_alice,alice,e_alpaca,d_alpaca,alpaca,e_alpha,d_alpha,alpha,e_alpine,d_alpine,alpine,e_amb,d_amb,amb,e_amp,d_amp,amp,e_anc,d_anc,anc,e_ankr,d_ankr,ankr,e_ant,d_ant,ant,e_ape,d_ape,ape,e_api3,d_api3,api3,e_apt,d_apt,apt,e_ar,d_ar,ar,e_ardr,d_ardr,ardr,e_arpa,d_arpa,arpa,e_astr,d_astr,astr,e_ata,d_ata,ata,e_atom,d_atom,atom,e_auction,d_auction,auction,e_audio,d_audio,audio,e_auto,d_auto,auto,e_ava,d_ava,ava,e_avax,d_avax,avax,e_axs,d_axs,axs,e_badger,d_badger,badger,e_bake,d_bake,bake,e_bal,d_bal,bal,e_band,d_band,band,e_bar,d_bar,bar,e_bat,d_bat,bat,e_bch,d_bch,bch,e_bel,d_bel,bel,e_beta,d_beta,beta,e_beth,d_beth,beth,e_bico,d_bico,bico,e_bidr,d_bidr,bidr,e_blz,d_blz,blz,e_bnb,d_bnb,bnb,e_bnt,d_bnt,bnt,e_bnx,d_bnx,bnx,e_bond,d_bond,bond,e_bsw,d_bsw,bsw,e_btc,d_btc,btc,e_bttc,d_bttc,bttc,e_burger,d_burger,burger,e_busd,d_busd,busd,e_c98,d_c98,c98,e_cake,d_cake,cake,e_celo,d_celo,celo,e_celr,d_celr,celr,e_cfx,d_cfx,cfx,e_chess,d_chess,chess,e_chr,d_chr,chr,e_chz,d_chz,chz,e_ckb,d_ckb,ckb,e_clv,d_clv,clv,e_cocos,d_cocos,cocos,e_comp,d_comp,comp,e_cos,d_cos,cos,e_coti,d_coti,coti,e_cream,d_cream,cream,e_crv,d_crv,crv,e_ctk,d_ctk,ctk,e_ctsi,d_ctsi,ctsi,e_ctxc,d_ctxc,ctxc,e_cvp,d_cvp,cvp,e_cvx,d_cvx,cvx,e_dai,d_dai,dai,e_dar,d_dar,dar,e_dash,d_dash,dash,e_data,d_data,data,e_dcr,d_dcr,dcr,e_dego,d_dego,dego,e_dent,d_dent,dent,e_dexe,d_dexe,dexe,e_dgb,d_dgb,dgb,e_dia,d_dia,dia,e_dock,d_dock,dock,e_dodo,d_dodo,dodo,e_doge,d_doge,doge,e_dot,d_dot,dot,e_drep,d_drep,drep,e_dusk,d_dusk,dusk,e_dydx,d_dydx,dydx,e_egld,d_egld,egld,e_elf,d_elf,elf,e_enj,d_enj,enj,e_ens,d_ens,ens,e_eos,d_eos,eos,e_epx,d_epx,epx,e_ern,d_ern,ern,e_etc,d_etc,etc,e_eth,d_eth,eth,e_eur,d_eur,eur,e_farm,d_farm,farm,e_fet,d_fet,fet,e_fida,d_fida,fida,e_fil,d_fil,fil,e_fio,d_fio,fio,e_firo,d_firo,firo,e_fis,d_fis,fis,e_flm,d_flm,flm,e_flow,d_flow,flow,e_flux,d_flux,flux,e_for,d_for,for,e_forth,d_forth,forth,e_front,d_front,front,e_ftm,d_ftm,ftm,e_ftt,d_ftt,ftt,e_fun,d_fun,fun,e_fxs,d_fxs,fxs,e_gal,d_gal,gal,e_gala,d_gala,gala,e_gas,d_gas,gas,e_glm,d_glm,glm,e_glmr,d_glmr,glmr,e_gmt,d_gmt,gmt,e_gmx,d_gmx,gmx,e_gno,d_gno,gno,e_grt,d_grt,grt,e_gtc,d_gtc,gtc,e_hard,d_hard,hard,e_hbar,d_hbar,hbar,e_high,d_high,high,e_hive,d_hive,hive,e_hnt,d_hnt,hnt,e_hot,d_hot,hot,e_icp,d_icp,icp,e_icx,d_icx,icx,e_idex,d_idex,idex,e_ilv,d_ilv,ilv,e_imx,d_imx,imx,e_inj,d_inj,inj,e_iost,d_iost,iost,e_iota,d_iota,iota,e_iotx,d_iotx,iotx,e_iq,d_iq,iq,e_iris,d_iris,iris,e_jasmy,d_jasmy,jasmy,e_joe,d_joe,joe,e_jst,d_jst,jst,e_kava,d_kava,kava,e_kda,d_kda,kda,e_key,d_key,key,e_klay,d_klay,klay,e_kmd,d_kmd,kmd,e_knc,d_knc,knc,e_kp3r,d_kp3r,kp3r,e_ksm,d_ksm,ksm,e_lazio,d_lazio,lazio,e_ldo,d_ldo,ldo,e_lever,d_lever,lever,e_lina,d_lina,lina,e_link,d_link,link,e_lit,d_lit,lit,e_loka,d_loka,loka,e_loom,d_loom,loom,e_lpt,d_lpt,lpt,e_lrc,d_lrc,lrc,e_lsk,d_lsk,lsk,e_ltc,d_ltc,ltc,e_lto,d_lto,lto,e_luna,d_luna,luna,e_lunc,d_lunc,lunc,e_magic,d_magic,magic,e_mana,d_mana,mana,e_mask,d_mask,mask,e_matic,d_matic,matic,e_mbl,d_mbl,mbl,e_mbox,d_mbox,mbox,e_mc,d_mc,mc,e_mdt,d_mdt,mdt,e_mdx,d_mdx,mdx,e_mina,d_mina,mina,e_mkr,d_mkr,mkr,e_mln,d_mln,mln,e_mob,d_mob,mob,e_movr,d_movr,movr,e_mtl,d_mtl,mtl,e_near,d_near,near,e_nebl,d_nebl,nebl,e_neo,d_neo,neo,e_nexo,d_nexo,nexo,e_nkn,d_nkn,nkn,e_nmr,d_nmr,nmr,e_nuls,d_nuls,nuls,e_ocean,d_ocean,ocean,e_og,d_og,og,e_ogn,d_ogn,ogn,e_om,d_om,om,e_omg,d_omg,omg,e_one,d_one,one,e_ong,d_ong,ong,e_ont,d_ont,ont,e_ooki,d_ooki,ooki,e_op,d_op,op,e_orn,d_orn,orn,e_osmo,d_osmo,osmo,e_oxt,d_oxt,oxt,e_paxg,d_paxg,paxg,e_people,d_people,people,e_perp,d_perp,perp,e_pha,d_pha,pha,e_phb,d_phb,phb,e_pla,d_pla,pla,e_pnt,d_pnt,pnt,e_pols,d_pols,pols,e_polyx,d_polyx,polyx,e_pond,d_pond,pond,e_porto,d_porto,porto,e_powr,d_powr,powr,e_prom,d_prom,prom,e_pros,d_pros,pros,e_psg,d_psg,psg,e_pundix,d_pundix,pundix,e_pyr,d_pyr,pyr,e_qi,d_qi,qi,e_qnt,d_qnt,qnt,e_qtum,d_qtum,qtum,e_quick,d_quick,quick,e_rad,d_rad,rad,e_rare,d_rare,rare,e_ray,d_ray,ray,e_reef,d_reef,reef,e_rei,d_rei,rei,e_ren,d_ren,ren,e_req,d_req,req,e_rlc,d_rlc,rlc,e_rndr,d_rndr,rndr,e_rose,d_rose,rose,e_rsr,d_rsr,rsr,e_rune,d_rune,rune,e_rvn,d_rvn,rvn,e_sand,d_sand,sand,e_santos,d_santos,santos,e_sc,d_sc,sc,e_scrt,d_scrt,scrt,e_sfp,d_sfp,sfp,e_shib,d_shib,shib,e_skl,d_skl,skl,e_slp,d_slp,slp,e_snm,d_snm,snm,e_snx,d_snx,snx,e_sol,d_sol,sol,e_spell,d_spell,spell,e_srm,d_srm,srm,e_stg,d_stg,stg,e_stmx,d_stmx,stmx,e_storj,d_storj,storj,e_stpt,d_stpt,stpt,e_strax,d_strax,strax,e_stx,d_stx,stx,e_sun,d_sun,sun,e_super,d_super,super,e_sushi,d_sushi,sushi,e_sxp,d_sxp,sxp,e_sys,d_sys,sys,e_t,d_t,t,e_tfuel,d_tfuel,tfuel,e_theta,d_theta,theta,e_tko,d_tko,tko,e_tlm,d_tlm,tlm,e_tomo,d_tomo,tomo,e_trb,d_trb,trb,e_tribe,d_tribe,tribe,e_troy,d_troy,troy,e_tru,d_tru,tru,e_trx,d_trx,trx,e_tvk,d_tvk,tvk,e_twt,d_twt,twt,e_uma,d_uma,uma,e_unfi,d_unfi,unfi,e_uni,d_uni,uni,e_usdc,d_usdc,usdc,e_usdt,d_usdt,usdt,e_ustc,d_ustc,ustc,e_utk,d_utk,utk,e_vet,d_vet,vet,e_vib,d_vib,vib,e_vite,d_vite,vite,e_voxel,d_voxel,voxel,e_vtho,d_vtho,vtho,e_wan,d_wan,wan,e_waves,d_waves,waves,e_waxp,d_waxp,waxp,e_win,d_win,win,e_wing,d_wing,wing,e_wnxm,d_wnxm,wnxm,e_woo,d_woo,woo,e_wrx,d_wrx,wrx,e_wtc,d_wtc,wtc,e_xec,d_xec,xec,e_xem,d_xem,xem,e_xlm,d_xlm,xlm,e_xmr,d_xmr,xmr,e_xrp,d_xrp,xrp,e_xtz,d_xtz,xtz,e_xvg,d_xvg,xvg,e_xvs,d_xvs,xvs,e_yfi,d_yfi,yfi,e_ygg,d_ygg,ygg,e_zec,d_zec,zec,e_zen,d_zen,zen,e_zil,d_zil,zil,e_zrx,d_zrx,zrx,1inch_udst_price,aave_udst_price,ach_udst_price,acm_udst_price,ada_udst_price,adx_udst_price,aergo_udst_price,agld_udst_price,akro_udst_price,alcx_udst_price,algo_udst_price,alice_udst_price,alpaca_udst_price,alpha_udst_price,alpine_udst_price,amb_udst_price,amp_udst_price,anc_udst_price,ankr_udst_price,ant_udst_price,ape_udst_price,api3_udst_price,apt_udst_price,ar_udst_price,ardr_udst_price,arpa_udst_price,astr_udst_price,ata_udst_price,atom_udst_price,auction_udst_price,audio_udst_price,auto_udst_price,ava_udst_price,avax_udst_price,axs_udst_price,badger_udst_price,bake_udst_price,bal_udst_price,band_udst_price,bar_udst_price,bat_udst_price,bch_udst_price,bel_udst_price,beta_udst_price,beth_udst_price,bico_udst_price,bidr_udst_price,blz_udst_price,bnb_udst_price,bnt_udst_price,bnx_udst_price,bond_udst_price,bsw_udst_price,btc_udst_price,bttc_udst_price,burger_udst_price,busd_udst_price,c98_udst_price,cake_udst_price,celo_udst_price,celr_udst_price,cfx_udst_price,chess_udst_price,chr_udst_price,chz_udst_price,ckb_udst_price,clv_udst_price,cocos_udst_price,comp_udst_price,cos_udst_price,coti_udst_price,cream_udst_price,crv_udst_price,ctk_udst_price,ctsi_udst_price,ctxc_udst_price,cvp_udst_price,cvx_udst_price,dai_udst_price,dar_udst_price,dash_udst_price,data_udst_price,dcr_udst_price,dego_udst_price,dent_udst_price,dexe_udst_price,dgb_udst_price,dia_udst_price,dock_udst_price,dodo_udst_price,doge_udst_price,dot_udst_price,drep_udst_price,dusk_udst_price,dydx_udst_price,egld_udst_price,elf_udst_price,enj_udst_price,ens_udst_price,eos_udst_price,epx_udst_price,ern_udst_price,etc_udst_price,eth_udst_price,eur_udst_price,farm_udst_price,fet_udst_price,fida_udst_price,fil_udst_price,fio_udst_price,firo_udst_price,fis_udst_price,flm_udst_price,flow_udst_price,flux_udst_price,for_udst_price,forth_udst_price,front_udst_price,ftm_udst_price,ftt_udst_price,fun_udst_price,fxs_udst_price,gal_udst_price,gala_udst_price,gas_udst_price,glm_udst_price,glmr_udst_price,gmt_udst_price,gmx_udst_price,gno_udst_price,grt_udst_price,gtc_udst_price,hard_udst_price,hbar_udst_price,high_udst_price,hive_udst_price,hnt_udst_price,hot_udst_price,icp_udst_price,icx_udst_price,idex_udst_price,ilv_udst_price,imx_udst_price,inj_udst_price,iost_udst_price,iota_udst_price,iotx_udst_price,iq_udst_price,iris_udst_price,jasmy_udst_price,joe_udst_price,jst_udst_price,kava_udst_price,kda_udst_price,key_udst_price,klay_udst_price,kmd_udst_price,knc_udst_price,kp3r_udst_price,ksm_udst_price,lazio_udst_price,ldo_udst_price,lever_udst_price,lina_udst_price,link_udst_price,lit_udst_price,loka_udst_price,loom_udst_price,lpt_udst_price,lrc_udst_price,lsk_udst_price,ltc_udst_price,lto_udst_price,luna_udst_price,lunc_udst_price,magic_udst_price,mana_udst_price,mask_udst_price,matic_udst_price,mbl_udst_price,mbox_udst_price,mc_udst_price,mdt_udst_price,mdx_udst_price,mina_udst_price,mkr_udst_price,mln_udst_price,mob_udst_price,movr_udst_price,mtl_udst_price,near_udst_price,nebl_udst_price,neo_udst_price,nexo_udst_price,nkn_udst_price,nmr_udst_price,nuls_udst_price,ocean_udst_price,og_udst_price,ogn_udst_price,om_udst_price,omg_udst_price,one_udst_price,ong_udst_price,ont_udst_price,ooki_udst_price,op_udst_price,orn_udst_price,osmo_udst_price,oxt_udst_price,paxg_udst_price,people_udst_price,perp_udst_price,pha_udst_price,phb_udst_price,pla_udst_price,pnt_udst_price,pols_udst_price,polyx_udst_price,pond_udst_price,porto_udst_price,powr_udst_price,prom_udst_price,pros_udst_price,psg_udst_price,pundix_udst_price,pyr_udst_price,qi_udst_price,qnt_udst_price,qtum_udst_price,quick_udst_price,rad_udst_price,rare_udst_price,ray_udst_price,reef_udst_price,rei_udst_price,ren_udst_price,req_udst_price,rlc_udst_price,rndr_udst_price,rose_udst_price,rsr_udst_price,rune_udst_price,rvn_udst_price,sand_udst_price,santos_udst_price,sc_udst_price,scrt_udst_price,sfp_udst_price,shib_udst_price,skl_udst_price,slp_udst_price,snm_udst_price,snx_udst_price,sol_udst_price,spell_udst_price,srm_udst_price,stg_udst_price,stmx_udst_price,storj_udst_price,stpt_udst_price,strax_udst_price,stx_udst_price,sun_udst_price,super_udst_price,sushi_udst_price,sxp_udst_price,sys_udst_price,t_udst_price,tfuel_udst_price,theta_udst_price,tko_udst_price,tlm_udst_price,tomo_udst_price,trb_udst_price,tribe_udst_price,troy_udst_price,tru_udst_price,trx_udst_price,tvk_udst_price,twt_udst_price,uma_udst_price,unfi_udst_price,uni_udst_price,usdc_udst_price,usdt_udst_price,ustc_udst_price,utk_udst_price,vet_udst_price,vib_udst_price,vite_udst_price,voxel_udst_price,vtho_udst_price,wan_udst_price,waves_udst_price,waxp_udst_price,win_udst_price,wing_udst_price,wnxm_udst_price,woo_udst_price,wrx_udst_price,wtc_udst_price,xec_udst_price,xem_udst_price,xlm_udst_price,xmr_udst_price,xrp_udst_price,xtz_udst_price,xvg_udst_price,xvs_udst_price,yfi_udst_price,ygg_udst_price,zec_udst_price,zen_udst_price,zil_udst_price,zrx_udst_price,total_net_balance_usdt +1,000005b7f7c9036618061dad1bef0efc3e2d466773025eb7c593c293a613613c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0412,0.0,0.0412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.55067574,0.0,0.55067574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.366341445537 +2,000070654b1160bd326e821b0cc67c48c063c9dd161a73fb1a0cdd33e6451fb6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00723138,0.0,0.00723138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.76e-06,0.0,1.76e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0038475018938 +3,0000896251a5a7b3a9667e190e1ed72264f27d7a969f13627d2bd03c160a5e3e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00267296,0.0,0.00267296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0048088,0.0,0.0048088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01706648,0.0,0.01706648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001952,0.0,0.0001952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.36e-05,0.0,7.36e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006237,0.0,0.0006237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.56196854,0.0,4.56196854,0.0,0.0,0.0,0.0,0.0,0.0,0.00557382,0.0,0.00557382,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1640509.54,0.0,1640509.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,14.034982659937402 +4,000092ddd2cab31762cfdb7dd6c28b8c5a7ee65a58e5a5b4786a4cca057428cc,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,354.417338,0.0,354.417338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52629598,0.0,0.52629598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01002178,0.0,0.01002178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,802.97716,0.0,802.97716,14.6120466,0.0,14.6120466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1409075,0.0,0.1409075,7.4,0.0,7.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6468.0,0.0,6468.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22654,0.0,0.22654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009542,0.0,0.0009542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001076,0.0,0.001076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6500450.4,0.0,6500450.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6140.49064,0.0,6140.49064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.170487,0.0,15.170487,0.0,0.0,0.0,0.0,0.0,0.0,764.51132,0.0,764.51132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,183.97812008,0.0,183.97812008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1869,0.0,0.1869,0.0,0.0,0.0,0.0,0.0,0.0,210.96,0.0,210.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,647.8858058514621 +5,00009a91742efdb611b3b74cc845af18d60876629df72e8c633ef73622ab1dea,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.0,0.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.264e-05,0.0,9.264e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1083.5154,0.0,1083.5154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01306774,0.0,0.01306774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1276,0.0,0.1276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,5.501071228427048 +6,0000b4a15114c094443b386dd99c462d8dca059a6025eea47f28a80767b4cbc2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8e-07,0.0,3.8e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.28e-06,0.0,1.28e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.773219844388 +7,0000d9f8021e3f37414ac76f32a60b9cf7c2e37bc5f4ecd86abdd3afc6b13078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3736.548,0.0,3736.548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.554e-05,0.0,9.554e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02808,0.0,0.02808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.41248,0.0,107.41248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.59182,0.0,25.59182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,828.1874,0.0,828.1874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1022.014146303 +8,00010b7c0a8b51bfa5eca14f0068670bd7fda4063f9bcac4f02c44a00144a80c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8e-06,0.0,2.8e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.02e-05,0.0,1.02e-05,32615502.0,0.0,32615502.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001086,0.0,0.001086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.68922,0.0,90.68922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13752,0.0,0.13752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0007086,0.0,0.0007086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,222.77411211374192 +9,00011e12d41634bb82a51c96e2f74487664955d76edd844a0ae051ce37e4ce66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.67161402,0.0,36.67161402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31311.04524064,0.0,31311.04524064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.2176799,0.0,33.2176799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,400.00034524,0.0,400.00034524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.69628,0.0,23.69628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187.86502688,0.0,187.86502688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,270.9528732868487 +10,0001720d245def77da58ea28fa42e46d16b81c0ea6e6ef3b236ebfd7e62580b2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +11,0002148b6d6675de3984317c1ef3d2c4946583be9fe12c25450a5fc40cd802a8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.348,0.0,1.348,0.02253416,0.0,0.02253416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.0,0.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.9645760507000003 +12,000215edb35f810ccb3476b68fad70a171a00ecdd0b8812b1214e016595dbafe,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16073946,0.0,0.16073946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.65682688,0.0,11.65682688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.17962,0.0,76.17962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,39.82527086952521 +13,000224a45d4f2c48b77f6e504a0296fdf23e28e2e0495c82a056373050e25894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0123109,0.0,0.0123109,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02531662,0.0,0.02531662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1.6124597649999997 +14,00027200efc539a91b34371884391a2d7cb057333148e48fc946337186caac52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.7352,0.0,64.7352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.039848,0.0,0.039848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.36300858859316 +15,0002cea23945900449d332e25a5be1b03cedce9c2aba750f81102966ff7af4b6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1816.0,0.0,1816.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.89,0.0,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00966,0.0,0.00966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.640338,0.0,21.640338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02153546,0.0,0.02153546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,11.295834837920097 +16,0003e0e22e794f36dba0c8f00f0ec17af248baf5005264d3bf4b0a554fda9446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.078e-05,0.0,9.078e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.258e-05,0.0,5.258e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47940016,0.0,0.47940016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.964,0.0,1.964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03284328,0.0,0.03284328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.8134211342139477 +17,00041fc9629281b8fe9521eb88006b95ff0562e4ef105e70328fe6385d648040,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.38748428,0.0,43.38748428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,21.687252205794795 +18,0004ba1653399af922b2e9424dfa0e5a9b329d63c71f3c838f2c593281161ad2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014118,0.0,0.00014118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00084674,0.0,0.00084674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.37948648,0.0,17.37948648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00018152,0.0,0.00018152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.672e-05,0.0,8.672e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00452274,0.0,0.00452274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12661968,0.0,0.12661968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004846,0.0,0.004846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.0,0.02,0.0,0.0,0.0,0.01568896,0.0,0.01568896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.56,0.0,1.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,8.8527053577477 +19,0004f6c3d5b6d41a13d2a71d5a0adc1d2b8d612d6eaeba64d00b957d1f7c71fc,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14,0.0,0.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.198,0.0,0.198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00240802,0.0,0.00240802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.948e-05,0.0,1.948e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.04659702,0.0,0.04659702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016,0.0,0.00016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036294,0.0,0.00036294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01602,0.0,0.01602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.057936,0.0,0.057936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1224,0.0,0.1224,0.0,0.0,0.0,0.0016288,0.0,0.0016288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.282,0.0,1.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.936,0.0,1.936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.8495047422 +20,0004f7952e26f970fea76a9b6157af055647bd562438a1f010b32db98b79096e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003645,0.0,0.0003645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.047366775 +21,0004ff23ceb897d1200dc92dbf8ecf7a89fd51d22acd20a4933442de06c807f2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01336,0.0,0.01336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.68e-06,0.0,1.68e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00836,0.0,0.00836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00044786,0.0,0.00044786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1684,0.0,0.1684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.0,0.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.98838374,0.0,2.98838374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.352,0.0,0.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1.6274348260592686 +22,0005234dd23da88ebc794d6591d52df4e5bd08b929df7ef235344c771505127c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9864,0.0,5.9864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.992302309388 +23,0005760363ca2e43896f8e64a974be5167df9832d7564a8d2683a72131a1c9fa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,720.55781608,0.0,720.55781608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.16e-05,0.0,8.16e-05,0.0,0.0,0.0,707.50466756,0.0,707.50466756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18511.29384806,0.0,18511.29384806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,245322.558,0.0,245322.558,4400.0,0.0,4400.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,240.61228444,0.0,240.61228444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,283048690.0,0.0,283048690.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25780.2745,0.0,25780.2745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,127615.79508372715 +24,00058c637579b342d1436f3bdd33c83f62a558a82956f8ba4527a04efc7e655a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.2,0.0,67.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01477534,0.0,0.01477534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.518,0.0,0.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.74,0.0,3.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6,0.0,4.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.258,0.0,0.258,0.0,0.0,0.0,1.75e-05,0.0,1.75e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.6,0.0,8.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,365.4,0.0,365.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2461.81486322,0.0,2461.81486322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1315.178789189811 +25,0005da8b39a98c2fc28f82ff21522b4a03beda6943772aa6f4adb0e3aa7772a0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.332e-05,0.0,1.332e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04888814,0.0,0.04888814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.1372930363789663 +26,0006290bbe6fb20002d94d97fc619493dcf8e3992848f4baf6c731f0a06cb36a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0092057,0.0,0.0092057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0939441685 +27,0006665df1b586804a7d5a0916eb357f8d42c32d5ae45f68388b5c2edb78b47c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9258128,0.0,0.9258128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.13834552,0.0,60.13834552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.3415947,0.0,44.3415947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,861014.0,0.0,861014.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,127.4,0.0,127.4,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,26.217949499239005 +28,00067654eee847108ddd6034ba6f329b4e681a5a53cdfcdccd47b3609a1188f8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.922,0.0,77.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00890198,0.0,0.00890198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.824836445103589 +29,0006b1aa471a9cd5aa824ccb1e20852e528128bf3d78a963e7d9b355c906d056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,242.94439616,0.0,242.94439616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.39753736,0.0,36.39753736,0.0,0.0,0.0,0.0,0.0,0.0,28.35856732,0.0,28.35856732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.50181906,0.0,9.50181906,0.0,0.0,0.0,26.19441828,0.0,26.19441828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2868335,0.0,0.2868335,0.0,0.0,0.0,2.8324218,0.0,2.8324218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.19603154,0.0,56.19603154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0085033,0.0,0.0085033,16227102.0,0.0,16227102.0,0.0,0.0,0.0,90744.25217872,0.0,90744.25217872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1029.1131898,0.0,1029.1131898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,370.42507984,0.0,370.42507984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55478.362,0.0,55478.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,194.38837328,0.0,194.38837328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.42866304,0.0,13.42866304,0.09517688,0.0,0.09517688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.13692612,0.0,10.13692612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.67254008,0.0,39.67254008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3122.99424926,0.0,3122.99424926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.32701376,0.0,17.32701376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.25769204,0.0,3.25769204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.22814404,0.0,12.22814404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1258222,0.0,0.1258222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.88804292,0.0,1.88804292,0.0,0.0,0.0,0.32147468,0.0,0.32147468,0.94,0.0,0.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1135907,0.0,0.1135907,130.33888864,0.0,130.33888864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000394,0.0,0.000394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0041766,0.0,0.0041766,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.529138,0.0,14.529138,0.0,0.0,0.0,398.37880678,0.0,398.37880678,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.86112662,0.0,26.86112662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19465575.62,0.0,19465575.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0377251,0.0,11.0377251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.13957938,0.0,12.13957938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2733.04217674,0.0,2733.04217674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.23380634,0.0,0.23380634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.63400052,0.0,0.63400052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,55386.50477057747 +30,0006c270e94b13dd5f6cf2c5279370d858a0f5ae8a4fc7b712606ea194f52c6a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1431525,0.0,0.1431525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.824e-05,0.0,3.824e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.5e-05,0.0,2.5e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.74788222,0.0,0.74788222,0.000514,0.0,0.000514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15627958,0.0,0.15627958,30963.12,0.0,30963.12,0.0,0.0,0.0,0.40370212,0.0,0.40370212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06492028,0.0,0.06492028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.8830503405293126 +31,0006eca2bdcb0c27f363e91035cf93c7957fc9c7cd148302efbe0d3abfcb8904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.98498,0.0,0.98498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.946,0.0,1.946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.96e-06,0.0,2.96e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00157024,0.0,0.00157024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.824,0.0,1.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0093726,0.0,0.0093726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00672,0.0,0.00672,0.0,0.0,0.0,1.314,0.0,1.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01704,0.0,0.01704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01456,0.0,0.01456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,246.656,0.0,246.656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0324,0.0,1.0324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4091554,0.0,0.4091554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,65.06008854993199 +32,00074b5c88bdb80a30858af7297068c32c138959488084896b71def38a6e0fc2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +33,0007c6f6b4e78cfdb643d98a62c98bcbe9f47627696598f7dbed35d65b9dd4a2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.968,0.0,0.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.02539064 +34,000813ccc647a5b5ba775b4a00938a6af75ca6ec1e438b175f2dceb9487c642e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00223658,0.0,0.00223658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.53277524,0.0,0.53277524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.342e-05,0.0,1.342e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1005102.0,0.0,1005102.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,4.484013217456001 +35,00081470b68a88a67e21d169aaa9827f5efca76320e912f68997d187018b4b60,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.129202,0.0,0.129202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019479,0.0,0.0019479,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3869.50192,0.0,3869.50192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.24779536,0.0,41.24779536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1124.8923360743624 +36,000837afb3045e7825129546f3865dc0a9426e902f869faf4d91a4bdc49fceee,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00105362,0.0,0.00105362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,8.927000905899998 +37,0008398446aeac896729bad3b05cb28c90b729b2b5263f407cb5305ecf8212ea,19.78218,0.0,19.78218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.011434,0.0,0.011434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.19802,0.0,2.19802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.846e-05,0.0,1.846e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.79e-05,0.0,1.79e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10446,0.0,0.10446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0749,0.0,0.0749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.9334,0.0,73.9334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9685,0.0,1.9685,0.000293,0.0,0.000293,0.0,0.0,0.0,0.0,0.0,0.0,7.79298,0.0,7.79298,1.995662,0.0,1.995662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000976,0.0,0.000976,0.00011752,0.0,0.00011752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.136274,0.0,4.136274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.4258148,0.0,2.4258148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1472,0.0,0.1472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.59136,0.0,9.59136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1109.001,0.0,1109.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3219969.38,0.0,3219969.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.073502,0.0,3.073502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,161.7516,0.0,161.7516,0.0,0.0,0.0,0.0135496,0.0,0.0135496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0003794,0.0,0.0003794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06812,0.0,0.06812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.44647854,0.0,5.44647854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20636,0.0,0.20636,0.0,0.0,0.0,0.015296,0.0,0.015296,0.15248,0.0,0.15248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.79658,0.0,3.79658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,208.83074022791058 +38,000853bc152d507c054b344a6f7c3e3415fcdc35462e75824ab5715ea699f330,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.2e-06,0.0,1.2e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.72804104,0.0,39.72804104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,19.858063133081846 +39,0008542f75898177ae49bcc496121ae73ec17b4fd749f6ead5c9c108ce9df5f2,42.5574,0.0,42.5574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.0252,0.0,86.0252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0178,0.0,0.0178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.9912,0.0,106.9912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,354.3083,0.0,354.3083,0.0,0.0,0.0,0.0,0.0,0.0,2.268e-05,0.0,2.268e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7e-07,0.0,7e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0564,0.0,0.0564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,451.298,0.0,451.298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.989,0.0,14.989,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12979.472,0.0,12979.472,15.3918,0.0,15.3918,0.0,0.0,0.0,0.0465534,0.0,0.0465534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,144.0,0.0,144.0,127.906,0.0,127.906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.6081,0.0,12.6081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,126.72368,0.0,126.72368,0.0,0.0,0.0,0.0,0.0,0.0,116.0,0.0,116.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3176.5203,0.0,3176.5203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.944,0.0,67.944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52845936,0.0,0.52845936,104926.3,0.0,104926.3,0.0,0.0,0.0,113.886,0.0,113.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.612492,0.0,2.612492,0.0,0.0,0.0,31.1688,0.0,31.1688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4932.24202,0.0,4932.24202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,205.3698,0.0,205.3698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4677.318,0.0,4677.318,0.0,0.0,0.0,0.0,0.0,0.0,3.87612,0.0,3.87612,0.0,0.0,0.0,0.1792,0.0,0.1792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.8,0.0,84.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1318,0.0,0.1318,633.8,0.0,633.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05102096,0.0,0.05102096,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.9604,0.0,98.9604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,442.02105323786986 +40,00089e961a1628888907889914124260d33023af813d5ac0e4b891ef17e7733a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35136.216546,0.0,35136.216546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,47.78525450256001 +41,0008e6903a35ed48c72c04b1324eca95b233b542617f944bd8f01b05a0cf7de6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28785016,0.0,0.28785016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36493476,0.0,0.36493476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13866748,0.0,0.13866748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4948.36553498,0.0,4948.36553498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.49,0.0,0.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,3267.9406568622476 +42,0008f090c9307ff27d542836bfb51652ec9d22fbad9b9c940244e35e6de5e1de,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.778e-05,0.0,8.778e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.83965818,0.0,9.83965818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,4.929760595057619 +43,0009081419e7262a88b3019e1fdd0a488b0a762aa549c0c0e91078a002a7a206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.78e-06,0.0,7.78e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.402,0.0,1.402,0.0,0.0,0.0,0.0,0.0,0.0,1.322,0.0,1.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01228,0.0,0.01228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.019156,0.0,0.019156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.084e-05,0.0,1.084e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0666,0.0,0.0666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01471094,0.0,0.01471094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.66,0.0,1.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.9,0.0,8.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05172,0.0,0.05172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.96e-06,0.0,1.96e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.4694252627660882 +44,000917c04699c81ca29ee49307c0fd2f86caa471dbd447eec7b52c5df5d5c50c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00050472,0.0,0.00050472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,658880.4,0.0,658880.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.934e-05,0.0,3.934e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006432,0.0,0.006432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.018,0.0,110.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.63556728,0.0,6.63556728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,210.05,0.0,210.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2635.92023778,0.0,2635.92023778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,557.4,0.0,557.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,92.93000786147901 +45,00091ba291fb5091098e65650278a1780dcc32bee221884a3b8cb295fa7a797c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1041.33771528,0.0,1041.33771528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,198.81963294,0.0,198.81963294,0.0,0.0,0.0,0.02075548,0.0,0.02075548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0035165,0.0,0.0035165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,419.35779782,0.0,419.35779782,0.03445982,0.0,0.03445982,27850868.8,0.0,27850868.8,0.0,0.0,0.0,158.0402698,0.0,158.0402698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,769911.588,0.0,769911.588,0.0,0.0,0.0,1.998,0.0,1.998,3.9e-06,0.0,3.9e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00767816,0.0,0.00767816,64046.4,0.0,64046.4,26.3782402,0.0,26.3782402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11538.2203522,0.0,11538.2203522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000413,0.0,0.000413,925.02,0.0,925.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,638.48346944,0.0,638.48346944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12139.07197328,0.0,12139.07197328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,287.9118,0.0,287.9118,0.0,0.0,0.0,0.0,0.0,0.0,747.96948144,0.0,747.96948144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21809.1485682,0.0,21809.1485682,6929.1305784,0.0,6929.1305784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51096802.16,0.0,51096802.16,3085.93690064,0.0,3085.93690064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,436.5940244,0.0,436.5940244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1413.58555308,0.0,1413.58555308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.49859056,0.0,13.49859056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1690.58297966,0.0,1690.58297966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,752.627796,0.0,752.627796,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2106.8825068994074 +46,00095161cba253b8757fa604f253fd176e0bc441b09d76bd29054ab0717dd164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.498e-05,0.0,5.498e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11659712,0.0,0.11659712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2954.30622,0.0,2954.30622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.372e-05,0.0,2.372e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038,0.0,0.0038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34948.8162,0.0,34948.8162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0776,0.0,0.0776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.7968386,0.0,7.7968386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,8487.618035239057 +47,00096f5f6c5a2eaad2f94ff3f505eaea3f77ba4e457b16b495e1a5ffd84e7876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00162,0.0,0.00162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,183.8,0.0,183.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02402894,0.0,0.02402894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,35.62236643599999 +48,0009e7a03a5c3c08c1e4d44a2b08f5bdc2819664b4596a76cf1e29ca675bebea,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.63e-05,0.0,9.63e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0218409,0.0,1.0218409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.5232814048478405 +49,0009ff72eabe1d16968c21232ee87c2f860c95003be59bda6be9ae24574f0830,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.6924214,0.0,2.6924214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.034,0.0,37.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12655296.56,0.0,12655296.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47952,0.0,0.47952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.56e-06,0.0,1.56e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,406.5297214211661 +50,000a2b739a37a58ebebf0e680b01e71fc9a86d2bf9c63275bb46b49790cf262c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16034276,0.0,0.16034276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14556056,0.0,0.14556056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.404,0.177176,0.0,0.177176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1322.08,0.0,1322.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8,0.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.088,0.0,110.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1089.84914768,0.0,1089.84914768,0.0,0.0,0.0,0.0,0.0,0.0,54740.75,0.0,54740.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8730792,0.0,1.8730792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8e-06,0.0,8e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1608.243401755215 +51,000a50119ed82290da967af491356367a3d8a708b2323421a0c9e588a2f852ae,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1276.0,0.0,1276.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5684351,0.0,0.5684351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.91220914,0.0,8.91220914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.42608056,0.0,0.42608056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.7198214,0.0,0.7198214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.35807164,0.0,5.35807164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.978,0.0,1.978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.694e-05,0.0,1.694e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35269808,0.0,0.35269808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46403254,0.0,0.46403254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,51.49,0.0,51.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.97569782,0.0,0.97569782,1.71752982,0.0,1.71752982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.52710826,0.0,10.52710826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4518593,0.0,0.4518593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,319.2835633,0.0,319.2835633,72.72699524,0.0,72.72699524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.62e-06,0.0,1.62e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,419.8895228754059 +52,000af006d5d8d752a53e691d7fc1ea42be9dc6031e1229a0e3f78687ce8f79de,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01812,0.0,0.01812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01391834,0.0,0.01391834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.42,0.0,0.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.81,0.0,0.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.120327007797 +53,000af55b595f5a177df647af8ddc8429f71bf86aafae23301a612c8e15f23028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.64e-06,0.0,8.64e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010596,0.0,0.010596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.002251242 +54,000ba4794d858f3fdff9d5841389e4a55f02cb50869b5c535410d98304c75b02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +55,000bdecbf64fef36826a64b7ab73bb4e09e31086be1299506a10d18f1d144c70,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +56,000c07055aa7e6f8de63b30ff276ed0b063ef0e40e18014f12b7368508639a1a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.63032308,0.0,2.63032308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1.399463394714 +57,000c30cd21b583282b80f14f8c0591f79fe3d2b1f8847ed606e8eb810c96601c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2e-08,0.0,2e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14762.23055432,-14762.23055432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38800.441858,0.0,38800.441858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,12013.287334180184 +58,000cda30d6cd9c5f27783da2d4e14cd814ba3e330c423820c8d4c8aa0cdc8c1a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00036978,0.0,0.00036978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08808658,0.0,0.08808658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.094919375889 +59,000ce864a8b97df87bc711521a210c6245b6c74630fb0c16180414b25b1be124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0886,0.0,0.0886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.34e-06,0.0,2.34e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.00867,0.0,0.00867,0.0,0.0,0.0,4.2e-05,0.0,4.2e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01906,0.0,0.01906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00133,0.0,0.00133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0184,0.0,0.0184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.56878196,0.0,30.56878196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0038,0.0,0.0038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,15.327074630601187 +60,000cfc666d4bb726a5d1e7347ffa91962ff4381439b332ff7de5f5759a0ff12a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.05580664,0.0,2.05580664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.67900324,0.0,0.67900324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5781.133,0.0,5781.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.77797184,0.0,20.77797184,0.02,0.0,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.1579951,0.0,79.1579951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5081938,0.0,0.5081938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.872e-05,0.0,5.872e-05,11064.138214,0.0,11064.138214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2198.5996177937636 +61,000d5eeaf01d2f341f965bec635c9357f8d0c76bee6013a85393b714954598c4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02463732,0.0,0.02463732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,3.201619734 +62,000d60c5a5c54a54d8b60468dc19b7fa3fe6c0289036748b5d7fa3ef85b81c7e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8e-08,0.0,8e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15534858,0.0,0.15534858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0783288103036861 +63,000d640e8e7d5b7ae7e838d0e59b333c8e7b82ebdaba7cd188856785c4e41a6e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +64,000ec637c2d694443d3da0d91734401bcbfc00ddd8a7cd9484b91d701b5485ea,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.74e-06,0.0,4.74e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07482012,0.0,0.07482012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.85462852,0.0,108.85462852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,305.27442,0.0,305.27442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2539.09004134,0.0,2539.09004134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.74090272,0.0,86.74090272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00480694,0.0,0.00480694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1537474,0.0,0.1537474,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,389.2698215284882 +65,000ee14c0ac1040f3286d4f4ce1f3eb8bcef3964adb4acd35e43997bfa3789c2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +66,000f0a8f88723d587dd8aa465226dce991414d1d6a639f5750db72eabfc2fcea,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0418,0.0,0.0418,0.0,0.0,0.0,0.0,0.0,0.0,0.01102,0.0,0.01102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00563982,0.0,0.00563982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005954,0.0,0.005954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.95,0.0,1.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41978134,0.0,0.41978134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.32497202,0.0,0.32497202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.7939086742177408 +67,000f3a1a14904f3670cf061f2d1123211980e1340526c36df28f43802f9f7d68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.482e-05,0.0,4.482e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.005824359 +68,000f5a83b427cbbd442ea94f449bae34cb5d9e780ef23087c31f18f67aeb36ae,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01291966,0.0,0.01291966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00103,0.0,0.00103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.998,0.0,1.998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,10.836254767 +69,000faab79a8bf5cf733e973ea3fdb660ad6553393322fc78dc590dd4de7dfc4e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1e-06,0.0,1.1e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006053,0.0,0.0006053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.3933222845 +70,000fe5554845df0e82b781abc580d033cdd0e7d4b7cb72eeb83779cfe2b97754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07646522,0.0,0.07646522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28641072,0.0,0.28641072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1.9729370236000001 +71,00103880a14aa74f5a40449ed27b4f7b43faba70904a5baad0c47c769dd487c8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.284e-05,0.0,2.284e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00905094,0.0,0.00905094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.648,0.0,1.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,391.608,0.0,391.608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.1138,0.0,70.1138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2646.1512,0.0,2646.1512,0.0,0.0,0.0,1.982,0.0,1.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1347.3002,0.0,1347.3002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1647212,0.0,0.1647212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0826,0.0,0.0826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2103.5883722485323 +72,00106faab849d34020d85a7c744d5770e907df07122c5317cbe3fae319cac7ca,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0018374,0.0,0.0018374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,1.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.01532294,0.0,2.01532294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1.3664248922485323 +73,001074b68dbe17e9f7ce768de4a469611cdd61191c86441a17dd879de2f6aeee,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2e-08,0.0,2e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,1.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8788,0.0,0.8788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.358,0.0,1.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4536000.88,0.0,4536000.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00478,0.0,0.00478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5e-06,0.0,5e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,19.27279672035022 +74,001159c44a0fda2a1e1136a9a7132caeb3171d7032e9473c6805f18268b799d0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.10951546,0.0,0.10951546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1124521,0.0,0.1124521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4646.038618,0.0,4646.038618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3600.0,0.0,3600.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,17595.610546476495 +75,0011f5920a8738c4b45bd5d3b62a043d7e512bade9d684b6603f7c3b5586d286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014974,0.0,0.00014974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0092,0.0,0.0092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.014164,0.0,0.014164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.057216637 +76,0012000f8eb7b032f333c0411891ec687d222e1ad35e949fd1a00e22a113d1d4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.08769904,0.0,2.08769904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.04698890872 +77,0012211a60237fb4a10718acdaee85a5e89dc80a3c002246ce0c8192ea14374a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +78,00122edaab18ce4ff149c9dec068b6e2efd2207dfca879bc40be6439cb4b6432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8e-07,0.0,8e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00587,0.0,0.00587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.00293414074815 +79,00123ee97755e8d41a6bc9ef500618ec2a90a7fc0c371c696728e0650a093b3e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00026122,0.0,0.00026122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0001305708287549 +80,001283d5e53941866ee8c36eb704b2fc58fe038833adca74c575b8b3c4ecf206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.88073984,0.0,18.88073984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01245826,0.0,0.01245826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00282618,0.0,0.00282618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,4.248653541797 +81,0012cc7609783ecaf3acc071f3bc481ba7165f22c31f0dd65bf6c15712165784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33843472,0.0,0.33843472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00893308,0.0,0.00893308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1715672,0.0,0.1715672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.299388666240524 +82,00137722adddad5588c13a85ca2a4e814c88b721084e210d83ccb353c246007c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.222e-05,0.0,4.222e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.88,0.0,3.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1.9454864889999999 +83,0014377424f88c6a37008a0c09cb65144cbb5098dcd5c2efa39ea9ea5ffa698e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.618e-05,0.0,1.618e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2e-08,0.0,2e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.37429048,0.0,18.37429048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,9.194002524271072 +84,00146f799750065a3a2479fbc70bac523a215f4ff9ef2bb1313260eb2224c4dc,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2e-07,0.0,3.2e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08076372,0.0,0.08076372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.025632,0.0,0.025632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,138.96,0.0,138.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.71518228,0.0,0.71518228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,95.07530694804122 +85,00147feeb73b4b11e4ac1ff8c99f9d2b3af6d5d55bcfc81c4ed19f12f499147a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00074694,0.0,0.00074694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.678078,0.0,1.678078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4e-06,0.0,1.4e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.936104552790063 +86,0014829906c2b8ae2ac510e53ad1dbed4f2ebd73ebb34b5a3d26b594a355acd2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.34e-05,0.0,1.34e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00689622,0.0,0.00689622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.4337,0.0,300.4337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006564,0.0,0.006564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1399.295,0.0,1399.295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0526,0.0,0.0526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,722.0643,0.0,722.0643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001286,0.0,0.001286,1.496,0.0,1.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.36,0.0,1.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.86e-06,0.0,1.86e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2066.986778262121 +87,0014a62ed94ab45e2d6f0d04ff532576c0049f37c9093ddbfcd3ca8fb990d9fa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.098e-05,0.0,1.098e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.66,0.0,1.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.37116,0.0,1.37116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.596837,0.0,0.596837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.98,0.0,1.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.36600138,0.0,1.36600138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1.425435890405665 +88,0014f6fed9250a4470547ed929e417f18fea9656787fdf6d7180c4eda961a4d0,38.1,0.0,38.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.3182,0.0,34.3182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00346,0.0,0.00346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2e-06,0.0,4.2e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01893588,0.0,0.01893588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.22576,0.0,14.22576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.70658,0.0,6.70658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.45771,0.0,7.45771,0.0,0.0,0.0,0.0,0.0,0.0,8.77122,0.0,8.77122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19304668,0.0,0.19304668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.924,0.0,0.924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.57434,0.0,85.57434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.52448,0.0,4.52448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1228,0.0,0.1228,6964.06,0.0,6964.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.664,0.0,1.664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1704,0.0,0.1704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0258,0.0,300.0258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35858,0.0,0.35858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.052804,0.0,0.052804,1.3032,0.0,1.3032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.91477318,0.0,0.91477318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.824,0.0,89.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,399.22143212678765 +89,0014fea9976083c5c15769708f3e3f9c3a8a4ced59e0cb0e6e07ed646447375e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00759518,0.0,0.00759518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.86345026,0.0,1.86345026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015,0.0,0.0015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.96594864,0.0,2.96594864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.5938882843323885 +90,00150096f3c4a6a59b2cf207fb8418e73be9950bc3f73c89b1c48479818efb36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1058,0.0,0.1058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.854,0.0,1.854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.736,0.0,1.736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,1.04,0.0,0.0,0.0,0.834,0.0,0.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1412,0.0,0.1412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3,0.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52532,0.0,0.52532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.4708479116 +91,0015564a4b946c381fc6b296880001c1c7b09c40a8541970465d3fb39f63dea0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01852,0.0,0.01852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01842,0.0,0.01842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8824,0.0,0.8824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.106,0.0,0.106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.63572052,0.0,1.63572052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.8868602495294234 +92,0015b41c3b539046e3620a69a5189ab22d9219215034e7f29a739601dc8ddd58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.784,0.0,1.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.462e-05,0.0,1.462e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.754,0.0,1.754,0.0,0.0,0.0,0.0258,0.0,0.0258,0.0,0.0,0.0,0.0,0.0,0.0,0.01228,0.0,0.01228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.44,0.0,1.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.11882,0.0,0.11882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.686,0.0,1.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.454,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.5553690991000001 +93,0015dd6c8e40d3ca90eb6348e120b243a1c7533ad6ffa90b70c029b331d94dd6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +94,001611e43b41a1fe85563a104014a5d4f428ba9cbe3b60e1a5544ae4439af8d2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1488.51,0.0,1488.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.48e-06,0.0,1.48e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1.8033301197079998 +95,00164d4b16e89540adb76af07105e811604055007ea24cf1eca6c79a97816068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19065492,0.0,0.19065492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.955094,0.0,3.955094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2e-05,0.0,2e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,26.75315527 +96,0016a933749449debce2fff9a2630f9e695d47f11e5ba3f0e615fecbf359c06a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2e-08,0.0,2e-08,0.0,0.0,0.0,0.0,0.0,0.0,181.1215116,0.0,181.1215116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,0.0,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.79419542,0.0,3.79419542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00244636,0.0,0.00244636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002041,0.0,0.0002041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,90.56489777759688 +97,0016d39fd0bf07eb58f79b1a613225e4f21ce7c5dc5202850af2565e8da7a020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.49858,0.0,2.49858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1.24929 +98,00172707aa1ad17dacf42e8799daf55c8b132080fcc1414c74cdeeb31b5e1aa0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023046,0.0,0.00023046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.64454528,0.0,1.64454528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.9567,0.0,13.9567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,30.029205905924 +99,00173b50116769079bbab36e144c86577ee0211478b3257967061b65b9fea9c8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.4e-06,0.0,7.4e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.062697943 +100,00177c1b2670a51b3d08d1c586808cc23d5a68b19949a7446bfeff8a17a11c9a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,253.407,0.0,253.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0013031,0.0,0.0013031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01348,0.0,0.01348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.44,0.0,0.0,0.0,26504.0,0.0,26504.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,177.35220269959999 diff --git a/src/sampledata/sample_users1.csv b/src/sampledata/sample_users1.csv new file mode 100644 index 0000000..51013c1 --- /dev/null +++ b/src/sampledata/sample_users1.csv @@ -0,0 +1,101 @@ +rn,id,e_1inch,d_1inch,1inch,e_aave,d_aave,aave,e_ach,d_ach,ach,e_acm,d_acm,acm,e_ada,d_ada,ada,e_adx,d_adx,adx,e_aergo,d_aergo,aergo,e_agld,d_agld,agld,e_akro,d_akro,akro,e_alcx,d_alcx,alcx,e_algo,d_algo,algo,e_alice,d_alice,alice,e_alpaca,d_alpaca,alpaca,e_alpha,d_alpha,alpha,e_alpine,d_alpine,alpine,e_amb,d_amb,amb,e_amp,d_amp,amp,e_anc,d_anc,anc,e_ankr,d_ankr,ankr,e_ant,d_ant,ant,e_ape,d_ape,ape,e_api3,d_api3,api3,e_apt,d_apt,apt,e_ar,d_ar,ar,e_ardr,d_ardr,ardr,e_arpa,d_arpa,arpa,e_astr,d_astr,astr,e_ata,d_ata,ata,e_atom,d_atom,atom,e_auction,d_auction,auction,e_audio,d_audio,audio,e_auto,d_auto,auto,e_ava,d_ava,ava,e_avax,d_avax,avax,e_axs,d_axs,axs,e_badger,d_badger,badger,e_bake,d_bake,bake,e_bal,d_bal,bal,e_band,d_band,band,e_bar,d_bar,bar,e_bat,d_bat,bat,e_bch,d_bch,bch,e_bel,d_bel,bel,e_beta,d_beta,beta,e_beth,d_beth,beth,e_bico,d_bico,bico,e_bidr,d_bidr,bidr,e_blz,d_blz,blz,e_bnb,d_bnb,bnb,e_bnt,d_bnt,bnt,e_bnx,d_bnx,bnx,e_bond,d_bond,bond,e_bsw,d_bsw,bsw,e_btc,d_btc,btc,e_bttc,d_bttc,bttc,e_burger,d_burger,burger,e_busd,d_busd,busd,e_c98,d_c98,c98,e_cake,d_cake,cake,e_celo,d_celo,celo,e_celr,d_celr,celr,e_cfx,d_cfx,cfx,e_chess,d_chess,chess,e_chr,d_chr,chr,e_chz,d_chz,chz,e_ckb,d_ckb,ckb,e_clv,d_clv,clv,e_cocos,d_cocos,cocos,e_comp,d_comp,comp,e_cos,d_cos,cos,e_coti,d_coti,coti,e_cream,d_cream,cream,e_crv,d_crv,crv,e_ctk,d_ctk,ctk,e_ctsi,d_ctsi,ctsi,e_ctxc,d_ctxc,ctxc,e_cvp,d_cvp,cvp,e_cvx,d_cvx,cvx,e_dai,d_dai,dai,e_dar,d_dar,dar,e_dash,d_dash,dash,e_data,d_data,data,e_dcr,d_dcr,dcr,e_dego,d_dego,dego,e_dent,d_dent,dent,e_dexe,d_dexe,dexe,e_dgb,d_dgb,dgb,e_dia,d_dia,dia,e_dock,d_dock,dock,e_dodo,d_dodo,dodo,e_doge,d_doge,doge,e_dot,d_dot,dot,e_drep,d_drep,drep,e_dusk,d_dusk,dusk,e_dydx,d_dydx,dydx,e_egld,d_egld,egld,e_elf,d_elf,elf,e_enj,d_enj,enj,e_ens,d_ens,ens,e_eos,d_eos,eos,e_epx,d_epx,epx,e_ern,d_ern,ern,e_etc,d_etc,etc,e_eth,d_eth,eth,e_eur,d_eur,eur,e_farm,d_farm,farm,e_fet,d_fet,fet,e_fida,d_fida,fida,e_fil,d_fil,fil,e_fio,d_fio,fio,e_firo,d_firo,firo,e_fis,d_fis,fis,e_flm,d_flm,flm,e_flow,d_flow,flow,e_flux,d_flux,flux,e_for,d_for,for,e_forth,d_forth,forth,e_front,d_front,front,e_ftm,d_ftm,ftm,e_ftt,d_ftt,ftt,e_fun,d_fun,fun,e_fxs,d_fxs,fxs,e_gal,d_gal,gal,e_gala,d_gala,gala,e_gas,d_gas,gas,e_glm,d_glm,glm,e_glmr,d_glmr,glmr,e_gmt,d_gmt,gmt,e_gmx,d_gmx,gmx,e_gno,d_gno,gno,e_grt,d_grt,grt,e_gtc,d_gtc,gtc,e_hard,d_hard,hard,e_hbar,d_hbar,hbar,e_high,d_high,high,e_hive,d_hive,hive,e_hnt,d_hnt,hnt,e_hot,d_hot,hot,e_icp,d_icp,icp,e_icx,d_icx,icx,e_idex,d_idex,idex,e_ilv,d_ilv,ilv,e_imx,d_imx,imx,e_inj,d_inj,inj,e_iost,d_iost,iost,e_iota,d_iota,iota,e_iotx,d_iotx,iotx,e_iq,d_iq,iq,e_iris,d_iris,iris,e_jasmy,d_jasmy,jasmy,e_joe,d_joe,joe,e_jst,d_jst,jst,e_kava,d_kava,kava,e_kda,d_kda,kda,e_key,d_key,key,e_klay,d_klay,klay,e_kmd,d_kmd,kmd,e_knc,d_knc,knc,e_kp3r,d_kp3r,kp3r,e_ksm,d_ksm,ksm,e_lazio,d_lazio,lazio,e_ldo,d_ldo,ldo,e_lever,d_lever,lever,e_lina,d_lina,lina,e_link,d_link,link,e_lit,d_lit,lit,e_loka,d_loka,loka,e_loom,d_loom,loom,e_lpt,d_lpt,lpt,e_lrc,d_lrc,lrc,e_lsk,d_lsk,lsk,e_ltc,d_ltc,ltc,e_lto,d_lto,lto,e_luna,d_luna,luna,e_lunc,d_lunc,lunc,e_magic,d_magic,magic,e_mana,d_mana,mana,e_mask,d_mask,mask,e_matic,d_matic,matic,e_mbl,d_mbl,mbl,e_mbox,d_mbox,mbox,e_mc,d_mc,mc,e_mdt,d_mdt,mdt,e_mdx,d_mdx,mdx,e_mina,d_mina,mina,e_mkr,d_mkr,mkr,e_mln,d_mln,mln,e_mob,d_mob,mob,e_movr,d_movr,movr,e_mtl,d_mtl,mtl,e_near,d_near,near,e_nebl,d_nebl,nebl,e_neo,d_neo,neo,e_nexo,d_nexo,nexo,e_nkn,d_nkn,nkn,e_nmr,d_nmr,nmr,e_nuls,d_nuls,nuls,e_ocean,d_ocean,ocean,e_og,d_og,og,e_ogn,d_ogn,ogn,e_om,d_om,om,e_omg,d_omg,omg,e_one,d_one,one,e_ong,d_ong,ong,e_ont,d_ont,ont,e_ooki,d_ooki,ooki,e_op,d_op,op,e_orn,d_orn,orn,e_osmo,d_osmo,osmo,e_oxt,d_oxt,oxt,e_paxg,d_paxg,paxg,e_people,d_people,people,e_perp,d_perp,perp,e_pha,d_pha,pha,e_phb,d_phb,phb,e_pla,d_pla,pla,e_pnt,d_pnt,pnt,e_pols,d_pols,pols,e_polyx,d_polyx,polyx,e_pond,d_pond,pond,e_porto,d_porto,porto,e_powr,d_powr,powr,e_prom,d_prom,prom,e_pros,d_pros,pros,e_psg,d_psg,psg,e_pundix,d_pundix,pundix,e_pyr,d_pyr,pyr,e_qi,d_qi,qi,e_qnt,d_qnt,qnt,e_qtum,d_qtum,qtum,e_quick,d_quick,quick,e_rad,d_rad,rad,e_rare,d_rare,rare,e_ray,d_ray,ray,e_reef,d_reef,reef,e_rei,d_rei,rei,e_ren,d_ren,ren,e_req,d_req,req,e_rlc,d_rlc,rlc,e_rndr,d_rndr,rndr,e_rose,d_rose,rose,e_rsr,d_rsr,rsr,e_rune,d_rune,rune,e_rvn,d_rvn,rvn,e_sand,d_sand,sand,e_santos,d_santos,santos,e_sc,d_sc,sc,e_scrt,d_scrt,scrt,e_sfp,d_sfp,sfp,e_shib,d_shib,shib,e_skl,d_skl,skl,e_slp,d_slp,slp,e_snm,d_snm,snm,e_snx,d_snx,snx,e_sol,d_sol,sol,e_spell,d_spell,spell,e_srm,d_srm,srm,e_stg,d_stg,stg,e_stmx,d_stmx,stmx,e_storj,d_storj,storj,e_stpt,d_stpt,stpt,e_strax,d_strax,strax,e_stx,d_stx,stx,e_sun,d_sun,sun,e_super,d_super,super,e_sushi,d_sushi,sushi,e_sxp,d_sxp,sxp,e_sys,d_sys,sys,e_t,d_t,t,e_tfuel,d_tfuel,tfuel,e_theta,d_theta,theta,e_tko,d_tko,tko,e_tlm,d_tlm,tlm,e_tomo,d_tomo,tomo,e_trb,d_trb,trb,e_tribe,d_tribe,tribe,e_troy,d_troy,troy,e_tru,d_tru,tru,e_trx,d_trx,trx,e_tvk,d_tvk,tvk,e_twt,d_twt,twt,e_uma,d_uma,uma,e_unfi,d_unfi,unfi,e_uni,d_uni,uni,e_usdc,d_usdc,usdc,e_usdt,d_usdt,usdt,e_ustc,d_ustc,ustc,e_utk,d_utk,utk,e_vet,d_vet,vet,e_vib,d_vib,vib,e_vite,d_vite,vite,e_voxel,d_voxel,voxel,e_vtho,d_vtho,vtho,e_wan,d_wan,wan,e_waves,d_waves,waves,e_waxp,d_waxp,waxp,e_win,d_win,win,e_wing,d_wing,wing,e_wnxm,d_wnxm,wnxm,e_woo,d_woo,woo,e_wrx,d_wrx,wrx,e_wtc,d_wtc,wtc,e_xec,d_xec,xec,e_xem,d_xem,xem,e_xlm,d_xlm,xlm,e_xmr,d_xmr,xmr,e_xrp,d_xrp,xrp,e_xtz,d_xtz,xtz,e_xvg,d_xvg,xvg,e_xvs,d_xvs,xvs,e_yfi,d_yfi,yfi,e_ygg,d_ygg,ygg,e_zec,d_zec,zec,e_zen,d_zen,zen,e_zil,d_zil,zil,e_zrx,d_zrx,zrx,1inch_udst_price,aave_udst_price,ach_udst_price,acm_udst_price,ada_udst_price,adx_udst_price,aergo_udst_price,agld_udst_price,akro_udst_price,alcx_udst_price,algo_udst_price,alice_udst_price,alpaca_udst_price,alpha_udst_price,alpine_udst_price,amb_udst_price,amp_udst_price,anc_udst_price,ankr_udst_price,ant_udst_price,ape_udst_price,api3_udst_price,apt_udst_price,ar_udst_price,ardr_udst_price,arpa_udst_price,astr_udst_price,ata_udst_price,atom_udst_price,auction_udst_price,audio_udst_price,auto_udst_price,ava_udst_price,avax_udst_price,axs_udst_price,badger_udst_price,bake_udst_price,bal_udst_price,band_udst_price,bar_udst_price,bat_udst_price,bch_udst_price,bel_udst_price,beta_udst_price,beth_udst_price,bico_udst_price,bidr_udst_price,blz_udst_price,bnb_udst_price,bnt_udst_price,bnx_udst_price,bond_udst_price,bsw_udst_price,btc_udst_price,bttc_udst_price,burger_udst_price,busd_udst_price,c98_udst_price,cake_udst_price,celo_udst_price,celr_udst_price,cfx_udst_price,chess_udst_price,chr_udst_price,chz_udst_price,ckb_udst_price,clv_udst_price,cocos_udst_price,comp_udst_price,cos_udst_price,coti_udst_price,cream_udst_price,crv_udst_price,ctk_udst_price,ctsi_udst_price,ctxc_udst_price,cvp_udst_price,cvx_udst_price,dai_udst_price,dar_udst_price,dash_udst_price,data_udst_price,dcr_udst_price,dego_udst_price,dent_udst_price,dexe_udst_price,dgb_udst_price,dia_udst_price,dock_udst_price,dodo_udst_price,doge_udst_price,dot_udst_price,drep_udst_price,dusk_udst_price,dydx_udst_price,egld_udst_price,elf_udst_price,enj_udst_price,ens_udst_price,eos_udst_price,epx_udst_price,ern_udst_price,etc_udst_price,eth_udst_price,eur_udst_price,farm_udst_price,fet_udst_price,fida_udst_price,fil_udst_price,fio_udst_price,firo_udst_price,fis_udst_price,flm_udst_price,flow_udst_price,flux_udst_price,for_udst_price,forth_udst_price,front_udst_price,ftm_udst_price,ftt_udst_price,fun_udst_price,fxs_udst_price,gal_udst_price,gala_udst_price,gas_udst_price,glm_udst_price,glmr_udst_price,gmt_udst_price,gmx_udst_price,gno_udst_price,grt_udst_price,gtc_udst_price,hard_udst_price,hbar_udst_price,high_udst_price,hive_udst_price,hnt_udst_price,hot_udst_price,icp_udst_price,icx_udst_price,idex_udst_price,ilv_udst_price,imx_udst_price,inj_udst_price,iost_udst_price,iota_udst_price,iotx_udst_price,iq_udst_price,iris_udst_price,jasmy_udst_price,joe_udst_price,jst_udst_price,kava_udst_price,kda_udst_price,key_udst_price,klay_udst_price,kmd_udst_price,knc_udst_price,kp3r_udst_price,ksm_udst_price,lazio_udst_price,ldo_udst_price,lever_udst_price,lina_udst_price,link_udst_price,lit_udst_price,loka_udst_price,loom_udst_price,lpt_udst_price,lrc_udst_price,lsk_udst_price,ltc_udst_price,lto_udst_price,luna_udst_price,lunc_udst_price,magic_udst_price,mana_udst_price,mask_udst_price,matic_udst_price,mbl_udst_price,mbox_udst_price,mc_udst_price,mdt_udst_price,mdx_udst_price,mina_udst_price,mkr_udst_price,mln_udst_price,mob_udst_price,movr_udst_price,mtl_udst_price,near_udst_price,nebl_udst_price,neo_udst_price,nexo_udst_price,nkn_udst_price,nmr_udst_price,nuls_udst_price,ocean_udst_price,og_udst_price,ogn_udst_price,om_udst_price,omg_udst_price,one_udst_price,ong_udst_price,ont_udst_price,ooki_udst_price,op_udst_price,orn_udst_price,osmo_udst_price,oxt_udst_price,paxg_udst_price,people_udst_price,perp_udst_price,pha_udst_price,phb_udst_price,pla_udst_price,pnt_udst_price,pols_udst_price,polyx_udst_price,pond_udst_price,porto_udst_price,powr_udst_price,prom_udst_price,pros_udst_price,psg_udst_price,pundix_udst_price,pyr_udst_price,qi_udst_price,qnt_udst_price,qtum_udst_price,quick_udst_price,rad_udst_price,rare_udst_price,ray_udst_price,reef_udst_price,rei_udst_price,ren_udst_price,req_udst_price,rlc_udst_price,rndr_udst_price,rose_udst_price,rsr_udst_price,rune_udst_price,rvn_udst_price,sand_udst_price,santos_udst_price,sc_udst_price,scrt_udst_price,sfp_udst_price,shib_udst_price,skl_udst_price,slp_udst_price,snm_udst_price,snx_udst_price,sol_udst_price,spell_udst_price,srm_udst_price,stg_udst_price,stmx_udst_price,storj_udst_price,stpt_udst_price,strax_udst_price,stx_udst_price,sun_udst_price,super_udst_price,sushi_udst_price,sxp_udst_price,sys_udst_price,t_udst_price,tfuel_udst_price,theta_udst_price,tko_udst_price,tlm_udst_price,tomo_udst_price,trb_udst_price,tribe_udst_price,troy_udst_price,tru_udst_price,trx_udst_price,tvk_udst_price,twt_udst_price,uma_udst_price,unfi_udst_price,uni_udst_price,usdc_udst_price,usdt_udst_price,ustc_udst_price,utk_udst_price,vet_udst_price,vib_udst_price,vite_udst_price,voxel_udst_price,vtho_udst_price,wan_udst_price,waves_udst_price,waxp_udst_price,win_udst_price,wing_udst_price,wnxm_udst_price,woo_udst_price,wrx_udst_price,wtc_udst_price,xec_udst_price,xem_udst_price,xlm_udst_price,xmr_udst_price,xrp_udst_price,xtz_udst_price,xvg_udst_price,xvs_udst_price,yfi_udst_price,ygg_udst_price,zec_udst_price,zen_udst_price,zil_udst_price,zrx_udst_price,total_net_balance_usdt +101,2539d1b177439722ece0bc4cc3a29d2f60d7d4062b4d4115f34292cacf133f3a,0.02028,0.0,0.02028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.656,0.0,19.656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.010012,0.0,0.010012,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.9248,0.0,59.9248,0.0,0.0,0.0,0.084836,0.0,0.084836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.76036,0.0,0.76036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6952,0.0,1.6952,0.0,0.0,0.0,2.620716,0.0,2.620716,0.0,0.0,0.0,0.0,0.0,0.0,6.93337168,0.0,6.93337168,0.0,0.0,0.0,1.56e-05,0.0,1.56e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74789.2,0.0,74789.2,0.0,0.0,0.0,1.77136866,0.0,1.77136866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.724,0.0,0.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,139.32616,0.0,139.32616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.984,0.0,3.984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.93048,0.0,15.93048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,912.8324,0.0,912.8324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.428e-05,0.0,6.428e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03688,0.0,0.03688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.804,0.0,1.804,0.00222,0.0,0.00222,0.0,0.0,0.0,0.0,0.0,0.0,0.012,0.0,0.012,183.4536,0.0,183.4536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,0.0016,0.0,0.0016,0.001788,0.0,0.001788,0.0,0.0,0.0,0.20784,0.0,0.20784,0.9388,0.0,0.9388,0.0,0.0,0.0,0.001354,0.0,0.001354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.578,0.0,1.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.7876,0.0,68.7876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.24594,0.0,4.24594,0.0,0.0,0.0,0.0010835,0.0,0.0010835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.0187507,0.0,84.0187507,10416399.38,0.0,10416399.38,0.0,0.0,0.0,0.0,0.0,0.0,19.27444,0.0,19.27444,7.85444386,0.0,7.85444386,0.0,0.0,0.0,0.09664,0.0,0.09664,0.001348,0.0,0.001348,0.0,0.0,0.0,30.76444,0.0,30.76444,0.176,0.0,0.176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00464,0.0,0.00464,0.0,0.0,0.0,0.00804,0.0,0.00804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.0784,0.0,16.0784,0.0,0.0,0.0,0.9664,0.0,0.9664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1736,0.0,1.1736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,201939.10483564,0.0,201939.10483564,0.0,0.0,0.0,0.0,0.0,0.0,108.0,0.0,108.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5547905,0.0,1.5547905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18276,0.0,0.18276,0.0,0.0,0.0,1.44184,0.0,1.44184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,20.0,0.127984,0.0,0.127984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3165.52,0.0,3165.52,0.0,0.0,0.0,103562.9152,0.0,103562.9152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.62128,0.0,0.62128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,534.71907224,0.0,534.71907224,11.8644,0.0,11.8644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,241.4,0.0,241.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1681.7,0.0,1681.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,4566.921825655256 +102,253a294f837abd2fcfd8784ca8ba37740f38358ca73ddd9ebbef8142d22b6072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.4e-07,0.0,7.4e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0062697943 +103,253a386176805f567773cbf82646ce5921cd22cdd8133df108f1b0c5a5fa2cf8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.14738236,0.0,1.14738236,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.4e-07,0.0,9.4e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.610464946412 +104,253b3fdf9c73deee174d8ad6353b6a4d42d3d2d016ea4e99ca3ddd63c32189b4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3063428,0.0,0.3063428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.83918446,0.0,1.83918446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8590494,0.0,2.8590494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09735178,0.0,0.09735178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3936893,0.0,0.3936893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18832132,0.0,0.18832132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25494038,0.0,0.25494038,0.91711206,0.0,0.91711206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.61723064,0.0,5.61723064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24111058,0.0,0.24111058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,240.2833220671024 +105,253b5cd2ebc77bdaf2008a6cbac1f831c75acc2b48f8f7e49d0b1d0e7df90d8a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00257648,0.0,0.00257648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.8,0.0,95.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1.459026576 +106,253c1a5ac713d37f9af37ffd0b1ea5b937820c9f56cef4de32d07f715ba0cc30,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.87342984,0.0,40.87342984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0065401,0.0,0.0065401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3040191,0.0,1.3040191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02178432,0.0,0.02178432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01268042,0.0,0.01268042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00441624,0.0,0.00441624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00176202,0.0,0.00176202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.3185415,0.0,78.3185415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.30269118,0.0,0.30269118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2780619,0.0,0.2780619,0.0,0.0,0.0,0.0,0.0,0.0,0.04602354,0.0,0.04602354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01262746,0.0,0.01262746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.39404924,0.0,3.39404924,0.0,0.0,0.0,0.00107668,0.0,0.00107668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.20978896,0.0,1.20978896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,375.9503605,0.0,375.9503605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.6587608,0.0,68.6587608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1514.4895395781732 +107,253c5671116c978fd148ae81b0fbf087a44412b97ff4a86e5e15534f58bb0528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.0,0.0,76.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.00002394 +108,253c5e032bb442c3f445e6d3849cf1a1b1906a4a24e017333dd64ad22e401784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,844.0,0.0,844.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00020946,0.0,0.00020946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,322.6962,0.0,322.6962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.68,0.0,1.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.68906026,0.0,3.68906026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,107.60484834516872 +109,253c7bb32a60077b46c97ea916512c8612bada4ccef420070e7304057be2ac9c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02021628,0.0,0.02021628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.97184804,0.0,1.97184804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,262.100637,0.0,262.100637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2e-06,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,182986.13824770626 +110,253c7c5af65a6a3060b846cb85498d9759a26f2a9a60d309c08f578a0be0f950,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6,0.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.71360026,0.0,0.71360026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.52,0.0,1.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18,0.0,0.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4301025.7,0.0,4301025.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,587.98,0.0,587.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.4,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,23.629002355500003 +111,253c8e6e04af6a3ef1cddcfef832bd056f2140f8401b1e2838b812ed76f67484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00862746,0.0,0.00862746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.18413162,0.0,40.18413162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.52e-06,0.0,1.52e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.1751689591646683 +112,253d2f0e0249905a1a894c695f3b49345f667540416c7ddadb5d93f0c0bfd036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.1,0.0,49.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,40.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,46.117656800000006 +113,253db64aafaf76f2a5fcd0dccfca249086b12e7e508366999fb3c52308b7f09c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2772.87722924,0.0,2772.87722924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.17906472,0.0,2.17906472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,453.00160404,0.0,453.00160404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.28e-06,0.0,1.28e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.66662552,0.0,9.66662552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00034768,0.0,0.00034768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,6348.003807362758 +114,253dd8003085a710b2228a4cc06fe361ff91c8ce687dc9e5417c5cdec2d33016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4e-07,0.0,5.4e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1603338.0,0.0,1603338.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01056398,0.0,0.01056398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.00000106,0.0,68.00000106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,18.46622043130438 +115,253de48d187208f6a1eb64167ccd80a5d39b0bb151392092d8ebcf128103d518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00041676,0.0,0.00041676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00094258,0.0,0.00094258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1786,0.0,0.1786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6,0.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.8943689101000001 +116,253e3c7ad9842eb6d04e6f4b6a18ea25973aa52e0e5a5c0bd765c27805cd4e9c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.816e-05,0.0,7.816e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,234158.3429,0.0,234158.3429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01186376,0.0,0.01186376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2052.42552,0.0,2052.42552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00255,0.0,0.00255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7128636,0.0,4.7128636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1997.30615236,0.0,1997.30615236,0.0,0.0,0.0,0.0,0.0,0.0,46000.0,0.0,46000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.43627326,0.0,0.43627326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,113675.00104947036 +117,253e65fb3903ff85c8b0fbf15ebd7422674a73c461ed948238e2481d61657316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001069,0.0,0.0001069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09279738,0.0,0.09279738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.126,0.0,0.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.138355664789 +118,253e6d3cb2dbeb0458825e4bec56c54389357d25626c5eca05546eedd32eeede,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01451564,0.0,0.01451564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.48,0.0,0.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.7852,0.0,14.7852,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.954,0.0,1.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.60892,0.0,3.60892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,3.5563157499999996 +119,253e70e7d4cb31b25dec8324b2d7a5241618d23d4ea4c747017018a0828f3df2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01776,0.0,0.01776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.16e-06,0.0,4.16e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.942e-05,0.0,1.942e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1826,0.0,0.1826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000952,0.0,0.000952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022462,0.0,0.022462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.966,0.0,0.966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.2362835779 +120,253e93d0bda19c9d244be5bf2351677acf614f5070287c70858d813bf4f8e5f0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02242728,0.0,0.02242728,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0053882,0.0,5.0053882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.999,0.0,0.999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.21095768,0.0,6.21095768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.38705418,0.0,22.38705418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.84279724,0.0,43.84279724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45678876,0.0,0.45678876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,84.82621811612589 +121,253e98e21edbabf6cbd16f699b8e0b6eddc325110b74d9fb8f2ab45f6cf2a738,0.0,0.0,0.0,0.000109,0.0,0.000109,0.0,0.0,0.0,0.0,0.0,0.0,1275.42534104,0.0,1275.42534104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00878,0.0,0.00878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.372,0.0,111.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.945,0.0,3.945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,725.98932656,0.0,725.98932656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16674216,0.0,0.16674216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01186892,0.0,0.01186892,75999828.6,0.0,75999828.6,0.0,0.0,0.0,0.0,0.0,0.0,347.1644,0.0,347.1644,0.0153,0.0,0.0153,0.0,0.0,0.0,2087.4,0.0,2087.4,0.0,0.0,0.0,0.0,0.0,0.0,0.4182,0.0,0.4182,1774.78,0.0,1774.78,0.0,0.0,0.0,0.0,0.0,0.0,0.59626,0.0,0.59626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5173.512,0.0,5173.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2875.3532,0.0,2875.3532,33.2311778,0.0,33.2311778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018929,0.0,0.018929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.90352184,0.0,109.90352184,0.0,0.0,0.0,0.0,0.0,0.0,12.06088,0.0,12.06088,0.00015072,0.0,0.00015072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.83642,0.0,9.83642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,54.65408,0.0,54.65408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,533.466,0.0,533.466,0.38798002,0.0,0.38798002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3354.4222,0.0,3354.4222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.5382,0.0,19.5382,278.3953517,0.0,278.3953517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,485.984,0.0,485.984,0.988,0.0,0.988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0002718,0.0,0.0002718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.35386964,0.0,7.35386964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.50236298,0.0,80.50236298,0.0,0.0,0.0,0.0,0.0,0.0,2.858e-05,0.0,2.858e-05,0.0,0.0,0.0,0.0,0.0,0.0,51.948,0.0,51.948,0.0,0.0,0.0,0.0412,0.0,0.0412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00089472,0.0,0.00089472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09364,0.0,0.09364,0.0,0.0,0.0,0.0,0.0,0.0,291.35522688,0.0,291.35522688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.608628,0.0,3.608628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.194016,0.0,20.194016,0.0,0.0,0.0,343.798,0.0,343.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77646779.68,0.0,77646779.68,0.0,0.0,0.0,6968.744,0.0,6968.744,0.0,0.0,0.0,0.0,0.0,0.0,3.6833494,0.0,3.6833494,0.0,0.0,0.0,104.2029,0.0,104.2029,0.0,0.0,0.0,13754.736,0.0,13754.736,89.1,0.0,89.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.386,0.0,0.0,0.0,56.97577426,0.0,56.97577426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.0,0.0,7.0,20.592954,0.0,20.592954,0.0,0.0,0.0,1.58,0.0,1.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10107.91623554,0.0,10107.91623554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.8536468,0.0,33.8536468,0.0,0.0,0.0,4.9593255,0.0,4.9593255,0.0,0.0,0.0,0.0,0.0,0.0,15676.5266397,0.0,15676.5266397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37698.59817196,0.0,37698.59817196,150.0,0.0,150.0,0.011158,0.0,0.011158,0.0,0.0,0.0,0.26,0.0,0.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.492e-05,0.0,2.492e-05,604.59077766,0.0,604.59077766,0.0,0.0,0.0,8164.0,0.0,8164.0,0.017256,0.0,0.017256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6850.9303056,0.0,6850.9303056,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2645.759772021647 +122,253eaa6246c5a7ec025fa31f00e72f4912fd41b5267e8b5b8921f1b78ecb5940,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0948,0.0,0.0948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.3e-05,0.0,2.3e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.2,0.0,0.0,0.0,0.20074622,0.0,0.20074622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25512.462,0.0,25512.462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6795.97613272,0.0,6795.97613272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00092898,0.0,0.00092898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.95,0.0,1.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3065.17462,0.0,3065.17462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,727.49964364,0.0,727.49964364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.90645632,0.0,0.90645632,1.238,0.0,1.238,0.0,0.0,0.0,2210.0,0.0,2210.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13639.92714066,0.0,13639.92714066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1426,0.0,0.1426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,227.92647114915505 +123,253f96efd53ecdfac9bfc6f4b38d9fb0234cd75c4cb93b06ae79ae0487136dcc,0.014128,0.0,0.014128,0.00160136,0.0,0.00160136,0.0,0.0,0.0,0.0,0.0,0.0,0.11874,0.0,0.11874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.351622,0.0,0.351622,0.0,0.0,0.0,0.0,0.0,0.0,0.054736,0.0,0.054736,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15274,0.0,1.15274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1324752,0.0,0.1324752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008864,0.0,0.008864,0.0192816,0.0,0.0192816,4.3391,0.0,4.3391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1799788,0.0,0.1799788,0.0,0.0,0.0,1.245548,0.0,1.245548,0.0003759,0.0,0.0003759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41140186,0.0,0.41140186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00847056,0.0,0.00847056,1052.4,0.0,1052.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008166,0.0,0.0008166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.71536,0.0,1.71536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0014559,0.0,0.0014559,0.48396,0.0,0.48396,511.98368,0.0,511.98368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0015571,0.0,0.0015571,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3532,0.0,1.3532,0.0,0.0,0.0,0.10634,0.0,0.10634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.71042,0.0,1.71042,10.8975048,0.0,10.8975048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3209289,0.0,0.3209289,0.0,0.0,0.0,0.17008,0.0,0.17008,0.0,0.0,0.0,0.099326,0.0,0.099326,0.0,0.0,0.0,0.0,0.0,0.0,0.0043912,0.0,0.0043912,0.00037262,0.0,0.00037262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02011094,0.0,0.02011094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.919,0.0,1.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1197.4492,0.0,1197.4492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05888,0.0,0.05888,0.0,0.0,0.0,0.0,0.0,0.0,1.9127,0.0,1.9127,0.0,0.0,0.0,61.581316,0.0,61.581316,0.0010102,0.0,0.0010102,0.7514,0.0,0.7514,0.0,0.0,0.0,157.685504,0.0,157.685504,0.0,0.0,0.0,0.084,0.0,0.084,0.0,0.0,0.0,0.0,0.0,0.0,0.9416,0.0,0.9416,0.576082,0.0,0.576082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1365072,0.0,0.1365072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003222,0.0,0.003222,0.0177418,0.0,0.0177418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.20056,0.0,0.20056,0.0,0.0,0.0,3.790003,0.0,3.790003,0.0,0.0,0.0,0.000636,0.0,0.000636,0.0,0.0,0.0,0.0,0.0,0.0,1.79651,0.0,1.79651,0.0,0.0,0.0,0.08652,0.0,0.08652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001211,0.0,0.0001211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.19352,0.0,0.19352,0.0,0.0,0.0,0.0146854,0.0,0.0146854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03036,0.0,0.03036,0.010634,0.0,0.010634,0.0,0.0,0.0,0.013036,0.0,0.013036,0.0,0.0,0.0,46.40788,0.0,46.40788,0.1813,0.0,0.1813,0.015992,0.0,0.015992,513.94916,0.0,513.94916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12348,0.0,0.12348,0.0,0.0,0.0,0.0,0.0,0.0,16.4833762,0.0,16.4833762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005254,0.0,0.0005254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0019284,0.0,0.0019284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3898,0.0,1.3898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.57516,0.0,27.57516,0.0,0.0,0.0,55.8668,0.0,55.8668,0.0,0.0,0.0,1.732,0.0,1.732,0.0,0.0,0.0,0.0,0.0,0.0,597.06,0.0,597.06,0.0956,0.0,0.0956,0.0,0.0,0.0,0.0,0.0,0.0,0.0011812,0.0,0.0011812,0.0164692,0.0,0.0164692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.015344,0.0,0.015344,0.0,0.0,0.0,0.0,0.0,0.0,0.01423,0.0,0.01423,0.0,0.0,0.0,144.0,0.0,144.0,0.1902486,0.0,0.1902486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0911,0.0,0.0911,0.150073,0.0,0.150073,0.0,0.0,0.0,0.0,0.0,0.0,0.005344,0.0,0.005344,0.0,0.0,0.0,0.0,0.0,0.0,0.4616,0.0,0.4616,0.0,0.0,0.0,0.0948,0.0,0.0948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.2985134,0.0,17.2985134,0.0,0.0,0.0,5.08137612,0.0,5.08137612,0.0,0.0,0.0,0.0,0.0,0.0,0.16222,0.0,0.16222,0.0,0.0,0.0,0.03874,0.0,0.03874,0.0,0.0,0.0,1.43,0.0,1.43,0.0,0.0,0.0,0.0096396,0.0,0.0096396,0.0,0.0,0.0,1.32,0.0,1.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008724,0.0,0.008724,0.918728,0.0,0.918728,0.00078872,0.0,0.00078872,1.966714,0.0,1.966714,0.196632,0.0,0.196632,0.0,0.0,0.0,0.0,0.0,0.0,1.94e-05,0.0,1.94e-05,0.0,0.0,0.0,1.864e-05,0.0,1.864e-05,0.01900092,0.0,0.01900092,0.00356,0.0,0.00356,0.737944,0.0,0.737944,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,525.531698261692 +124,2540115cd9873d2913029c079b0e0c64a552f201294d16c02313fc5d93258c96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1508,0.0,0.1508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01322,0.0,0.01322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,0.0,0.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001962,0.0,0.001962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20893.086,0.0,20893.086,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34857978,0.0,0.34857978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.16,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,25.01292165571909 +125,254019b9041f48fae622fd0ebe78bbb5a7fa458070ad3a6a9de4267a964c4610,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0364,0.0,0.0364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01911866,0.0,0.01911866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4e-06,0.0,1.4e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.50384824 +126,2540429e287e5a87b36df36d1da3e1140cbf3fa14cd265d9a4b19b3c4868777c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00089706,0.0,0.00089706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98877.082,0.0,98877.082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,33.883096450000004 +127,2540b006ad3357dc6eb08610c72d4b6e53de85bd4a891777fa6bf526bfe5a774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4e-08,0.0,4e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00257122,0.0,0.00257122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0012904224327049 +128,25415ca81a96638467ec7adb29d9fb15a26df41183586b32e27597fb9c1c0a0e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.88e-06,0.0,1.88e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.87753544,0.0,1.87753544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.4044743,0.0,3.4044743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1.8793175768658001 +129,25418cc6d72c63ef632794a9c70ceaff9c3fabf55c74d1e1272f087f49cfd092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00282652,0.0,0.00282652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.3673062739999999 +130,25422f6d6302ba055810a7e77939d066638cd5b5f3e1a3f087377daa0d8af808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +131,254259c8e6b27e02dffc5009203e533b3624b7efb63771bde19a8820a80b5a9e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0642,0.0,0.0642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01562,0.0,0.01562,0.0,0.0,0.0,0.0,0.0,0.0,0.00622,0.0,0.00622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.75922,0.0,20.75922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.66e-06,0.0,9.66e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15,0.0,0.15,0.0704888,0.0,0.0704888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.058,0.0,0.058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2386.314,0.0,2386.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01244,0.0,0.01244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00108,0.0,0.00108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,131.676,0.0,131.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22612.206,0.0,22612.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1155.3878,0.0,1155.3878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25351.684,0.0,25351.684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13107.3036,0.0,13107.3036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.254,0.0,0.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.83604156,0.0,0.83604156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0704,0.0,0.0704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0936,0.0,0.0936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,151.848,0.0,151.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,431043253.96,0.0,431043253.96,0.0,0.0,0.0,1093.502,0.0,1093.502,0.0,0.0,0.0,0.0,0.0,0.0,20.75988,0.0,20.75988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.552,0.0,1.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1398,0.0,0.1398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13952574,0.0,0.13952574,1.982,0.0,1.982,0.0,0.0,0.0,0.1992,0.0,0.1992,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,187.5980407,0.0,187.5980407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,931.068,0.0,931.068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13777.4348,0.0,13777.4348,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2841.516716069201 +132,25426527744525eb819968f4c5f594d3d2b8e9bc9e5f44badb4ce159337e27b0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00949204,0.0,0.00949204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1708.99876274,0.0,1708.99876274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,855.4765990585335 +133,25426dafa553d71b518d74e8e31de3018dd38cc558fcaf0c08ff01cd9e62c8c8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08333998,0.0,0.08333998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,10.830030400999998 +134,254283833d563b2991d1f649f6d7255420d2bd24cbee13695eecc475586afd5a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +135,2542cb427df11e68e700cbb33e545197d776d765be8f3b832caccd785003f630,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00154148,0.0,0.00154148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70194.08,0.0,70194.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.5909320608473667 +136,25433bfb0b03e5a2fa586c4cf7438649865485aa4f1fedb2019e21d775c16d94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.99781492,0.0,1.99781492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2576.61006296,0.0,2576.61006296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30621.04843432,0.0,30621.04843432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,16853.853518176034 +137,25433bfeb5ee406875607df235172be82269ddeace8ae8838a5ee33448dbecd8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2220197,0.0,4.2220197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1265741.2,0.0,1265741.2,0.0,0.0,0.0,24860.37500302,0.0,24860.37500302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.76e-06,0.0,1.76e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16618.6539215,0.0,16618.6539215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,21286.072580550368 +138,25437212411d736f236910c69499a831b12e6c94145de2209c93a98869706d9c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06693076,0.0,0.06693076,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.401685,0.0,0.401685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00032014,0.0,0.00032014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08608942,0.0,0.08608942,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04219032,0.0,0.04219032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22366448,0.0,0.22366448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.41960552,0.0,0.41960552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04265234,0.0,0.04265234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.61521834,0.0,33.61521834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,71.91006165835043 +139,254373e7836701f5020f0b401d310c7820f5e2ae03db736d6b87a31091014c7c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,631.8,0.0,631.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,24.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.212,0.0,6.212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6023778.04,0.0,6023778.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.592,0.0,37.592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,583.4,0.0,583.4,0.0,0.0,0.0,0.0,0.0,0.0,70.94,0.0,70.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,142.32457143859997 +140,2544162f2d2f0396e1ff9a38325db100be6e7b8794d0f69fb41ab5ec5c27443a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2,0.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,207.6,0.0,207.6,1.332,0.0,1.332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,743521.34,0.0,743521.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,308.82,0.0,308.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,16.7455445481 +141,25441d4a7dd07e63e6ca00043c355027efb62452db69e36262a4737818d6015e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +142,2544a625f6c462285fe209051c25069a05cd3b2202ae95461e2b2c29d2867902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,513.46860562,0.0,513.46860562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.1245252,0.0,150.1245252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.71319222,0.0,0.71319222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00539614,0.0,0.00539614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00852916,0.0,0.00852916,1693.48,0.0,1693.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.56117476,0.0,0.56117476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.9949397,0.0,15.9949397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.93802856,0.0,0.93802856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1326.15002792,0.0,1326.15002792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,471.55625631175405 +143,25450b60c97fc221d44678d933d989ec9349bee2bfe0c6de5161744b9041c1d4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.08251024,0.0,40.08251024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.76,0.0,1.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,20.03530949117696 +144,254523050d13d332df879e45a91c4a667dad8ace8b5b79a3b15c8df336d98ec4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.86299,0.0,1.86299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0530327,0.0,0.0530327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.07232892,0.0,3.07232892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.4954147969518017 +145,254525a3a6c1a583a0bd45876109e41016c80c1068c290c5f12e6c91cd0653f8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05814186,0.0,0.05814186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01568938,0.0,0.01568938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,194.16174662,0.0,194.16174662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00081406,0.0,0.00081406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000276,0.0,0.000276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.01744772,0.0,12.01744772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.2e-05,0.0,7.2e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.12626048,0.0,1.12626048,0.0,0.0,0.0,0.0,0.0,0.0,0.00430706,0.0,0.00430706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.22354192,0.0,20.22354192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.52488612,0.0,76.52488612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,197.6142121499189 +146,254528b557a18a8ad8f724c85f3428f20a519b11f58e16c7ff5cf8e853a2f570,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000216,0.0,0.000216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.272e-05,0.0,9.272e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00023162,0.0,0.00023162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.54,0.0,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,8.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01244,0.0,0.01244,0.0,0.0,0.0,0.0,0.0,0.0,0.07722168,0.0,0.07722168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,3.6335454124442 +147,254582b46c00abd53aab44d00e5dce01df323baab22364bfd63b2ac8db5e5860,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.148,0.0,1.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.33866,0.0,1.33866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.292e-05,0.0,9.292e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00076848,0.0,0.00076848,0.002,0.0,0.002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.24576912,0.0,0.24576912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00039998,0.0,0.00039998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003318,0.0,0.003318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.40958,0.0,10.40958,0.0,0.0,0.0,8.726e-05,0.0,8.726e-05,0.0033436,0.0,0.0033436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01058,0.0,0.01058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5819.608,0.0,5819.608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1182.7598410670366 +148,25458f1c42ef0686cfeee48edd08d3a4927a833e1c0c482190eb1a6317b208a0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00448,0.0,0.00448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.7492,0.0,1.7492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00984,0.0,0.00984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00938,0.0,0.00938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.12,0.0,1.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00134,0.0,0.00134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0189,0.0,0.0189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.133945475802 +149,2545a15a85c96ec8c2f71da082cd92536da4128fd2e230435cd1d5ca59e195ec,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00197804,0.0,0.00197804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6e-08,0.0,6e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.76004554,0.0,94.76004554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2160493.82,0.0,2160493.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,26.9778203439719 +150,2545ac9bce9758c40c657e19c3cf35f3ac3a82461e62f15ff15a5270a05c47e8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.32024816,0.0,0.32024816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.256,0.0,0.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.92,0.0,1.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.015216133072 +151,2545fa3d153e6febedcc8f7847ff3f573369965393e31d774a41ec1fe2e8ce00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +152,2546088deabdeef7664c179057c7cfaf6e4296698043451da3fa66e8027eb396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4e-07,0.0,5.4e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.05892556,0.0,1.05892556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.924e-05,0.0,1.924e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.51952118,0.0,0.51952118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10134.86327616,0.0,10134.86327616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,1217.1778859753808 +153,254673eaae8550bbe119352c301e001a2ff5c622f69ab3b75d271c456151a2b0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +154,2546921872a4fbbcfc1e1c32957410ebd61b42c549770909e968cf7a5dbf12f8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1842.0,0.0,1842.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16403.232,0.0,16403.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00292092,0.0,0.00292092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,5.603745665993442 +155,25469f82b8e26454fd378f4b78526754971973aeeff2003ee3946045f31daa06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00107,0.0,0.00107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.0,0.0,100.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,62.270783650000006 +156,25470e9075fb2407861018ebcf623e96a628dd8e9fa60be99dee4f51ec6bc858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +157,25477822da3e5a6b84b82bf624968bbdb0f718e8ba7eddd84e8b52b1021f8436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0908501,0.0,1.0908501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.5452614715732544 +158,25481bf35e14734e96cd9cbc9d0e50348e1736d9c0f207256a9f0a592ef9d1d6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.36e-06,0.0,1.36e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.508,0.0,8.508,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.55328478,0.0,0.55328478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.812e-05,0.0,1.812e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00926,0.0,0.00926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0758,0.0,4.0758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.524,0.0,1.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.906,0.0,1.906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,778.3252398,0.0,778.3252398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,389.1483693394779 +159,254880db158ed513ba1bf43fb90154abc48de53de9aec27f5530713861ccc8da,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.456e-05,0.0,4.456e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01986,0.0,0.01986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9e-05,0.0,9e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.017378,0.0,0.017378,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.02440932678201 +160,2548ea2ccee856139bc95ef9e09ce2ab69f6fcbee33b471080a1b0ff6d62b51e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22675.514,0.0,22675.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.334e-05,0.0,3.334e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.38e-06,0.0,1.38e-06,262502.0,0.0,262502.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6412936,0.0,1.6412936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.3436,0.0,8.3436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.64365228,0.0,2.64365228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2933.24,0.0,2933.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6464091,0.0,4.6464091,20.0,0.0,20.0,0.0,0.0,0.0,0.0,0.0,0.0,115.62838,0.0,115.62838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.055275,0.0,0.055275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1050.16749752,0.0,1050.16749752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,222.06,0.0,222.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.82,0.0,1.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0048324,0.0,1.0048324,1.295782,0.0,1.295782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,3239.683309396715 +161,25490983b0e7dd8ab62abd8b6e836e8c4447e6a01df6f7f6dbc001cc2b225c90,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0416631,0.0,0.0416631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,352.9987390545 +162,25491f51c0c18fe40f7bc59ee96e39a97b6ddd856149adb1abc6858cf25852b8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.09276,0.0,0.09276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4e-08,0.0,4e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.72,0.0,1.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.30892939 +163,2549a22988cea1b363cdc1e9d95de853f3bcb50c0e461108677fc528eca9b64e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.91186338,0.0,28.91186338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15988202,0.0,0.15988202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.25455684,0.0,3.25455684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,5113.459824641622 +164,2549b486e3c50abd59c0e5e4a95fbbfd8712c2b5011146cfcdc5a3e1ffcc332c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00356788,0.0,0.00356788,0.0,0.0,0.0,0.0,0.0,0.0,0.02413562,0.0,0.02413562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5267335,0.0,1.5267335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.89190614,0.0,8.89190614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.63542606,0.0,8.63542606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,36.25629736156578 +165,254a42d7fe98c1d752305342642bdc912119ea3955c40d73c6c60dab409740cc,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.15091182,0.0,25.15091182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,12.571684405018033 +166,254a50cb7ae74481b7383a996e28f3d23d7cb850e6371b8f7711a2108c6895c8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00498,0.0,0.00498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00458,0.0,0.00458,0.0,0.0,0.0,1.894,0.0,1.894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001334,0.0,0.001334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0034,0.0,0.0034,0.0084387,0.0,0.0084387,0.1686,0.0,0.1686,0.000954,0.0,0.000954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00016308,0.0,0.00016308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4e-07,0.0,5.4e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000158,0.0,0.000158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.9768,0.0,0.9768,0.0001,0.0,0.0001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1321717,0.0,0.1321717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.336,0.0,1.336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01672,0.0,0.01672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000356,0.0,0.000356,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08188,0.0,0.08188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00458,0.0,0.00458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00124,0.0,0.00124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.167,0.0,0.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000458,0.0,0.000458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.4e-05,0.0,9.4e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2e-06,0.0,2e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82061474,0.0,0.82061474,0.0,0.0,0.0,0.0,0.0,0.0,0.1532,0.0,0.1532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,84.63297943899205 +167,254a97f73e1ed4e0b13430a15d4274ad673013bd6d4874fbd8c2add1e220324e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0216,0.0,0.0216,0.0,0.0,0.0,0.0,0.0,0.0,0.452444,0.0,0.452444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6472,0.0,3.6472,0.0,0.0,0.0,0.0,0.0,0.0,5.4464,0.0,5.4464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.82e-05,0.0,6.82e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8444,0.0,1.8444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.8456,0.0,20.8456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.8,0.0,0.8,0.063644,0.0,0.063644,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004144,0.0,0.004144,0.00094466,0.0,0.00094466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.011068,0.0,1.011068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0516128,0.0,0.0516128,2.2824,0.0,2.2824,8e-08,0.0,8e-08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.42896,0.0,0.42896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.092708,0.0,0.092708,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00062,0.0,0.00062,0.78664,0.0,0.78664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0326636,0.0,0.0326636,0.0,0.0,0.0,0.01820336,0.0,0.01820336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.63332,0.0,0.63332,10420.49208,0.0,10420.49208,0.0,0.0,0.0,2.53696,0.0,2.53696,0.0,0.0,0.0,2.58144,0.0,2.58144,0.0,0.0,0.0,2.24896,0.0,2.24896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06048,0.0,0.06048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.814812,0.0,3.814812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,338.0966,0.0,338.0966,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.363952,0.0,0.363952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.28108,0.0,3.28108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.763588,0.0,3.763588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.3116,0.0,3.3116,0.163668,0.0,0.163668,0.0,0.0,0.0,0.0,0.0,0.0,4.4512,0.0,4.4512,12256.02,0.0,12256.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.15244,0.0,0.15244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.61892,0.0,2.61892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06528628,0.0,0.06528628,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.24792,0.0,2.24792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,4184.562175760104 +168,254aa652d6c08561aaf2805e0d1068ae421a5b2bdf194c11c1879c2b1f50885c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.812,0.0,1.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0176,0.0,0.0176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0832,0.0,0.0832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.05e-05,0.0,6.05e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.1354,0.0,3.1354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1854,0.0,0.1854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1468,0.0,0.1468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.094,0.0,6.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.0,0.0,34.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.75,0.0,1.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1596,0.0,0.1596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.08,0.0,1.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25073948,0.0,0.25073948,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6e-07,0.0,6e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,7.761146923561276 +169,254ad791d6778394df286caa8aa888b57d4fb9604ef0e0913c56152ebb93a6f8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0001635,0.0,0.0001635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.6e-06,0.0,9.6e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,214172.32358612,0.0,214172.32358612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47423218,0.0,0.47423218,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,776.5728866157821 +170,254bbf95f4c1669b30c1a6d5e58ffa85e043ed242ae9eaf0dc93a53b2871b98a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01097398,0.0,0.01097398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0054853443968291 +171,254c598f2a6eded0493178d1a777d8e8dd73f77c66c6f4b95a869104b6e4531c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.05953682,0.0,0.05953682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014718,0.0,0.00014718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.88,0.0,0.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4e-07,0.0,6.4e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0955299563039288 +172,254c7e46f497832c9bc11dbc819ca91d2091212bd9944828ac1d91469f7b773e,0.0,0.0,0.0,0.001488,0.0,0.001488,0.0,0.0,0.0,0.0304,0.0,0.0304,3514.019,0.0,3514.019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.034,0.0,0.0,0.0,0.32,0.0,0.32,0.00362,0.0,0.00362,0.0,0.0,0.0,0.0,0.0,0.0,0.3,0.0,0.3,0.0,0.0,0.0,0.0,0.0,0.0,1.44,0.0,1.44,0.0,0.0,0.0,0.0,0.0,0.0,0.019,0.0,0.019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1704,0.0,0.1704,0.0,0.0,0.0,0.0074,0.0,0.0074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01884,0.0,0.01884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0005164,0.0,0.0005164,0.0402,0.0,0.0402,1.884,0.0,1.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.4e-07,0.0,5.4e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.00754,0.0,0.00754,0.0318,0.0,0.0318,9.74e-06,0.0,9.74e-06,0.0,0.0,0.0,0.0608,0.0,0.0608,0.32351902,0.0,0.32351902,0.0,0.0,0.0,1.158,0.0,1.158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.418,0.0,0.418,16.0,0.0,16.0,0.0,0.0,0.0,0.0,0.0,0.0,0.944,0.0,0.944,0.001478,0.0,0.001478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.288,0.0,1.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0112,0.0,0.0112,0.0,0.0,0.0,0.0,0.0,0.0,1.146,0.0,1.146,0.01724,0.0,0.01724,0.692,0.0,0.692,0.0,0.0,0.0,0.00026,0.0,0.00026,0.02,0.0,0.02,0.0364,0.0,0.0364,0.076,0.0,0.076,0.0,0.0,0.0,0.0328,0.0,0.0328,1.558,0.0,1.558,0.0,0.0,0.0,0.01604452,0.0,0.01604452,6.83957224,0.0,6.83957224,22.69009614,0.0,22.69009614,0.0,0.0,0.0,0.0,0.0,0.0,0.0888,0.0,0.0888,0.0,0.0,0.0,0.0,0.0,0.0,0.0056,0.0,0.0056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008,0.0,0.0008,0.0,0.0,0.0,0.25,0.0,0.25,0.0055,0.0,0.0055,0.0,0.0,0.0,0.0,0.0,0.0,0.001308,0.0,0.001308,1.61,0.0,1.61,0.0,0.0,0.0,0.0,0.0,0.0,0.128,0.0,0.128,0.062,0.0,0.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0167,0.0,0.0167,0.0,0.0,0.0,0.1068,0.0,0.1068,0.0,0.0,0.0,0.14,0.0,0.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0106,0.0,0.0106,0.0,0.0,0.0,0.0,0.0,0.0,0.0056,0.0,0.0056,0.0,0.0,0.0,0.968,0.0,0.968,0.0,0.0,0.0,0.816,0.0,0.816,0.0838,0.0,0.0838,0.017,0.0,0.017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.06,0.0,0.06,0.00576,0.0,0.00576,0.00718,0.0,0.00718,0.1156,0.0,0.1156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8252,0.0,2.8252,0.0,0.0,0.0,0.00265504,0.0,0.00265504,5874656.6,0.0,5874656.6,0.0,0.0,0.0,1.846,0.0,1.846,0.0,0.0,0.0,0.0132,0.0,0.0132,1.942,0.0,1.942,1.2,0.0,1.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.036,0.0,0.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.21,0.0,0.0,0.0,0.0,0.0,0.0,0.188,0.0,0.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0181,0.0,0.0181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1916,0.0,0.1916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00376198,0.0,0.00376198,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.036,0.0,0.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.2,0.0,19.2,0.0,0.0,0.0,0.0196,0.0,0.0196,427.87799902,0.0,427.87799902,0.0,0.0,0.0,0.0157,0.0,0.0157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.48,0.0,0.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.124,0.0005,0.0,0.0005,434.0,0.0,434.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1304,0.0,0.1304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0226,0.0,0.0226,0.282,0.0,0.282,0.0,0.0,0.0,0.0,0.0,0.0,0.1912,0.0,0.1912,0.0053,0.0,0.0053,0.0,0.0,0.0,6.8e-07,0.0,6.8e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.1108,0.0,0.1108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00618,0.0,0.00618,0.0,0.0,0.0,1.22,0.0,1.22,0.0126,0.0,0.0126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.068,0.0,12.068,0.00151,0.0,0.00151,0.16,0.0,0.16,0.04,0.0,0.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0278,0.0,0.0278,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,5420.3743283581525 +173,254ca8653658319956fee4ac96a1c66002a1ef55dbacc583697195c191e4681e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00400786,0.0,0.00400786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.6655268,0.0,16.6655268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,7.17786608726 +174,254ce1e7f2b4938158cd77eb08c9fe5e289f5ac697e38d297b6537892ecdc8ac,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15066,0.0,1.15066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.16e-06,0.0,1.16e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.5753305798260522 +175,254d1e9d6b4b907ca2328a4a35dc11d0eda5bbf75f0622cd2f2acba969ae165a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.306e-05,0.0,2.306e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8132325,0.0,1.8132325,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.909612897 +176,254d392a379d5a2d45fa94e3455b76a55b40b1fc0936b3b3f04aa7db142c42ae,0.0,0.0,0.0,0.00102,0.0,0.00102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.97,0.0,1.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00084652,0.0,0.00084652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.56807428,0.0,0.56807428,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04400944,0.0,0.04400944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,367.7258181239644 +177,254d486caac15c15a9a4ddd4d57cf3f59274bf10e1aeef9e0addb58f1c460034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.222e-05,0.0,4.222e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.64608864,0.0,1.64608864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.8285308090000001 +178,254dbd2230dfedd5c14edb24eaacc0109900c2536eeb648f4f31a42ca7b6051e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +179,254dff26edf24bd0e5632ef7cc8e5424cf825ca6b5ded7c42bb18489b4f99d00,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,498.0784297,0.0,498.0784297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0158816,0.0,4.0158816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.157238,0.0,2.157238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.14766782,0.0,27.14766782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,6.0,8.15748912,0.0,8.15748912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4983168,0.0,0.4983168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.17240158,0.0,3.17240158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.60629878,0.0,27.60629878,0.01535126,0.0,0.01535126,0.0,0.0,0.0,0.0,0.0,0.0,2019.5384739,0.0,2019.5384739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1445144,0.0,1.1445144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.88753726,0.0,0.88753726,790.98170444,0.0,790.98170444,0.0,0.0,0.0,0.0,0.0,0.0,9.84930416,0.0,9.84930416,159.29097746,0.0,159.29097746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.80230208,0.0,0.80230208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.9121283,0.0,27.9121283,45652.88,0.0,45652.88,0.0,0.0,0.0,177.66013156,0.0,177.66013156,0.0,0.0,0.0,266.96931432,0.0,266.96931432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.41920652,0.0,150.41920652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.71018196,0.0,6.71018196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2185.55078946,0.0,2185.55078946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.141095,0.0,11.141095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,3150.1062592905437 +180,254e8bb93a87d064ac5bccdd0a7b11cd69911972f44e55ada759db5d3e0cf6a2,1.46e-06,0.0,1.46e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17942572,0.0,0.17942572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2e-07,0.0,3.2e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.98e-06,0.0,1.98e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.8e-06,0.0,1.8e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.22e-06,0.0,1.22e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.96e-06,0.0,1.96e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12903332,0.0,0.12903332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1368.9867576,0.0,1368.9867576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.8e-07,0.0,6.8e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62666.92592822,0.0,62666.92592822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3e-07,0.0,3e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7e-07,0.0,7e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.72e-06,0.0,1.72e-06,0.0,0.0,0.0,0.0,0.0,0.0,1.36e-06,0.0,1.36e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6418314,0.0,1.6418314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.4e-07,0.0,9.4e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.4e-06,0.0,1.4e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.8e-07,0.0,3.8e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.8e-07,0.0,4.8e-07,430542.16,0.0,430542.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.6e-07,0.0,4.6e-07,0.0,0.0,0.0,1.52e-06,0.0,1.52e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.92e-06,0.0,1.92e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.9e-06,0.0,1.9e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8088052.28,0.0,8088052.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4e-07,0.0,6.4e-07,4.8e-07,0.0,4.8e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.3e-06,0.0,1.3e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.2e-07,0.0,5.2e-07,0.0,0.0,0.0,2442.63792926,0.0,2442.63792926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00435208,0.0,0.00435208,0.0,0.0,0.0,0.0,0.0,0.0,0.00527428,0.0,0.00527428,0.0,0.0,0.0,0.0,0.0,0.0,3.6e-07,0.0,3.6e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.8e-06,0.0,1.8e-06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1729060.64,0.0,1729060.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.14941162,0.0,0.14941162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,141.87531608934538 +181,254efbe488502eac491f4c03118dcad1121376ff6f8070a567359237d60eee78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00133592,0.0,0.00133592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50615.861472,0.0,50615.861472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.75645086,0.0,0.75645086,150194.32,0.0,150194.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9e-07,0.0,9e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,19.88484908701404 +182,254f64184afcacaeedd80d5f7f11ff82ce92beae5cf8a67963b50e0f54f80c32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.964,0.0,11.964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,5.98020593838 +183,254f7780785c5eaab9c640d769532687dfce21847b1a343a722cdd8e29beb37e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,143399.811292,0.0,143399.811292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.728e-05,0.0,1.728e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0521499,0.0,0.0521499,0.0,0.0,0.0,0.0,0.0,0.0,0.04035876,0.0,0.04035876,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,293.86805696,0.0,293.86805696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.7768,0.0,614.7768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.63489684,0.0,3.63489684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.918,0.0,39.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0068,0.0,0.0068,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.8144,0.0,11.8144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,480127.6450273,0.0,480127.6450273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.18348,0.0,3.18348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58943.87778604,0.0,58943.87778604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003594,0.0,0.003594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,0.0,200.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01281298,0.0,0.01281298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,415858.916996,0.0,415858.916996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,32914.44553656418 +184,254fd9097bda479da8e143192f569411329fb2d573f8c49a4fd1072d56c35460,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +185,25500ab0813ba0f0b06a0343f0d2fa92457aa0ddd2414e3ef12c0687c1f49606,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2064.586,0.0,2064.586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1558.44,0.0,1558.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.22,0.0,0.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001168,0.0,0.001168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11446724.0,0.0,11446724.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3269.39531392,0.0,3269.39531392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08621908,0.0,0.08621908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,113.75994659709626 +186,2550959e98d4f38edbb8bcfc97782da053bc13cf35093b594ef2ded4313cd936,0.0072,0.0,0.0072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02248,0.0,0.02248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01984,0.0,0.01984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1954,0.0,0.1954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.058e-05,0.0,8.058e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.66e-06,0.0,1.66e-06,1754.0,0.0,1754.0,0.0,0.0,0.0,0.0119,0.0,0.0119,0.0,0.0,0.0,0.0,0.0,0.0,0.02112,0.0,0.02112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1592,0.0,0.1592,3e-05,0.0,3e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.932e-05,0.0,1.932e-05,0.00346,0.0,0.00346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1828,0.0,0.1828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00624,0.0,0.00624,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2152.34,0.0,2152.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.70976,0.0,10.70976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.2918222,0.0,3.2918222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.84,0.0,1.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.013693198401999 +187,255110543f545f8c56f36fcd469777bc2eb94f2306300c5092e026a2c6644850,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0756,0.0,0.0756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.18e-05,0.0,6.18e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.85e-05,0.0,1.85e-05,0.0,0.0,0.0,0.0,0.0,0.0,1.8646489,0.0,1.8646489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.4055926,0.0,9.4055926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00114,0.0,0.00114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.12173952,0.0,29.12173952,0.02,0.0,0.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03182908,0.0,0.03182908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1705.43735036,0.0,1705.43735036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,6839.7749128401665 +188,255124e86e35aa81a68b15cdaf6321b03af9003c09b437b4a67fa43b3734f8e2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +189,25518821a7f162a88d9fd73cea04ada5390aaa380b843e8e7f5aa3d8e186d058,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00286,0.0,0.00286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01108,0.0,0.01108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.52e-05,0.0,1.52e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00194,0.0,0.00194,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00749546,0.0,0.00749546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,209.71854,0.0,209.71854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,36.11213259001829 +190,255281193e5cbbeeb534e7fa270bdbda85ed8806e836d167564b638e765ae5a6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00298702,0.0,0.00298702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.3881632489999999 +191,2552e690a33269056a2e82d14a3d3c26f0a0b85de9ccfda2cafbe3992c4f6ba0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00110626,0.0,0.00110626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40000.0,0.0,40000.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.984,0.0,1.984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0314744,0.0,2.0314744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25028.94,0.0,25028.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.1737797832563484 +192,2552ed693070725bf79a229c822ab71923075fc655e7e8f1bdaff7514e22ef0a,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000784,0.0,0.000784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,206.40471984,0.0,206.40471984,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,109.8140013802364 +193,2553173fd1cc7d1ecf0054ca64fe7d8ab0de04f7265b7751aef24f09c5e9b5b0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.18016054,0.0,0.18016054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,543.58765354,0.0,543.58765354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00154856,0.0,0.00154856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,271.8034874110534 +194,25534b07cda4e80d1e6433d0a97afba7505f8a60138818a2a31b1d74afb8187e,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.072,0.0,1.072,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.538,0.0,0.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.554,0.0,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01362,0.0,0.01362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.196,0.0,0.196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.054,0.0,1.054,3e-07,0.0,3e-07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.622e-05,0.0,1.622e-05,1458.0,0.0,1458.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.35,0.0,1.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1758,0.0,0.1758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1094,0.0,0.1094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1594,0.0,0.1594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.96,0.0,80.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1758,0.0,0.1758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.302,0.0,0.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.548,0.0,1.548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0094,0.0,0.0094,0.0,0.0,0.0,0.004,0.0,0.004,0.0,0.0,0.0,0.0,0.0,0.0,1.3,0.0,1.3,0.0,0.0,0.0,0.132,0.0,0.132,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0182,0.0,0.0182,0.0,0.0,0.0,0.0,0.0,0.0,0.0868,0.0,0.0868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.0,0.0,49.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0082,0.0,0.0082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1712,0.0,0.1712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0562,0.0,0.0562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00584,0.0,0.00584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000442,0.0,0.000442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.512,0.0,1.512,0.0,0.0,0.0,0.0,0.0,0.0,1.85,0.0,1.85,0.00472,0.0,0.00472,0.0,0.0,0.0,0.13,0.0,0.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.136,0.0,1.136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1013549.06,0.0,1013549.06,0.108,0.0,0.108,0.592,0.0,0.592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0852,0.0,0.0852,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.124,0.0,0.0,0.0,0.163292,0.0,0.163292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000428,0.0,0.000428,1583.6148,0.0,1583.6148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.338,0.0,0.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.586,0.0,1.586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.242,0.0,1.242,0.0,0.0,0.0,0.0,0.0,0.0,0.1,0.0,0.1,0.0107,0.0,0.0107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00112,0.0,0.00112,0.1574,0.0,0.1574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,187.306398802624 +195,25534b59bbc2eba49e7272546733d8f68ad0473f1c7428d1d7fc71aa148453f6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.68408,0.0,9.68408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.352e-05,0.0,7.352e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.00091982,0.0,0.00091982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.167352,0.0,0.167352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.98e-05,0.0,3.98e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1426,0.0,0.1426,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2.3652981704 +196,2553b1fd847759dab8aa3af0eaa2a3d7750c0778652d1408f0a57665ef1190c8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13486,0.0,0.13486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0009712,0.0,0.0009712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.05e-05,0.0,3.05e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9e-05,0.0,5.9e-05,0.0,0.0,0.0,0.0,0.0,0.0,1.4445323,0.0,1.4445323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3104,0.0,0.3104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.086,0.0,0.086,0.0,0.0,0.0,1.95998,0.0,1.95998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00375344,0.0,0.00375344,0.02,0.0,0.02,0.0,0.0,0.0,1.366,0.0,1.366,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00722,0.0,0.00722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4337.480215,0.0,4337.480215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.816,0.0,1.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,2170.012818418532 +197,2553c38a451c1ed7890d361947311e92f7d80af0dd2502e9765fb55927b8731a,0.01114,0.0,0.01114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.626,0.0,0.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.626e-05,0.0,1.626e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.000898,0.0,0.000898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1802,0.0,0.1802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0098,0.0,0.0098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.612,0.0,1.612,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00836,0.0,0.00836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0164,0.0,0.0164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0092,0.0,0.0092,0.0,0.0,0.0,0.0,0.0,0.0,0.0396,0.0,0.0396,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.444,0.0,0.444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1698,0.0,0.1698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00898,0.0,0.00898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001056,0.0,0.001056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.312,0.0,1.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0153,0.0,0.0153,0.01974,0.0,0.01974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.91219154,0.0,0.91219154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,1.5,0.000402,0.0,0.000402,0.0,0.0,0.0,0.0,0.0,0.0,0.0454,0.0,0.0454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.5108391421176193 +198,2554495a6ef12951d85930853bd97dac1e2676723afb1c94e54519fd6fc0ecaa,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +199,255476a9583b3f17f6852d0c8f08279c35f07ea042d6ae86daffe8f6f803eb56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,0.0 +200,2554d6b67b7eda8f1a6299f2c05c722f35071d11491baca8e83cb35a81ee8b2c,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00011398,0.0,0.00011398,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00177774,0.0,0.00177774,0.0,0.0,0.0,0.0,0.0,0.0,0.0964,0.0,0.0964,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006837,0.0,0.0006837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00106748,0.0,0.00106748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.397,0.0,1.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00014658,0.0,0.00014658,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.994e-05,0.0,6.994e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.246e-05,0.0,9.246e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00019414,0.0,0.00019414,0.0003417,0.0,0.0003417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,555.907944,0.0,555.907944,0.0,0.0,0.0,0.00209762,0.0,0.00209762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.978e-05,0.0,8.978e-05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0008584,0.0,0.0008584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07388588,0.0,0.07388588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150063.78,0.0,150063.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.39600000,56.40000000,0.00798000,2.54600000,0.27840000,0.11820000,0.09070000,0.27200000,0.00305000,14.10000000,0.18900000,1.13500000,0.24960000,0.07850000,2.08490000,0.01326000,0.00322000,0.03403000,0.01660000,2.09400000,4.03700000,1.11100000,3.85600000,6.85000000,0.06676484,0.02662000,0.04010000,0.09340000,10.24500000,4.09000000,0.14320000,230.60000000,0.53900000,11.78000000,6.82000000,2.37000000,0.13790000,5.41100000,1.46100000,3.71000000,0.17740000,101.70000000,0.41300000,0.06997000,1229.09000000,0.27300000,0.00006390,0.05380000,259.90000000,0.34900000,59.20000000,3.26300000,0.17680000,16945.39000000,0.00000063,0.52400000,1.00000000,0.16470000,3.31400000,0.52000000,0.01010000,0.02280000,0.18200000,0.11400000,0.10990000,0.00251000,0.05355000,0.52020000,33.58000000,0.00445000,0.05570000,10.79000000,0.54700000,0.74500000,0.10590000,0.17630000,0.33750000,3.08100000,0.99990001,0.12935000,45.83000000,0.02355000,18.62298361,1.59200000,0.00068300,2.40000000,0.00822000,0.29700000,0.01518000,0.09870000,0.07239000,4.68200000,0.31380000,0.08700000,1.21200000,34.34000000,0.16910000,0.25560000,11.55000000,0.89600000,0.00029600,1.75400000,20.41000000,1268.80000000,1.06410000,30.70000000,0.12400000,0.33540000,3.33800000,0.02750000,1.65400000,0.33130000,0.07659316,0.69900000,0.50900000,0.01625000,2.94000000,0.18080000,0.22110000,0.91250000,0.00616637,5.14100000,1.15400000,0.02347000,2.02600000,0.18500000,0.31950000,0.25880000,41.73000000,87.87363791,0.06200000,1.33400000,0.14940000,0.03910000,0.88700000,0.27000000,1.84000000,0.00148200,3.89800000,0.15160000,0.03880000,38.87000000,0.42300000,1.36800000,0.00725000,0.18230000,0.02215000,0.00432000,0.01321740,0.00376000,0.14160000,0.02014000,0.65900000,0.94800000,0.00293500,0.16130000,0.19046618,0.49400000,62.16000000,25.01000000,3.09780000,1.52000000,0.00172300,0.00526900,5.71200000,0.72200000,0.36320000,0.04094000,4.44000000,0.20630000,0.72400000,75.89000000,0.07100000,1.32510000,0.00015605,0.47590000,0.32780000,2.38500000,0.79890000,0.00236900,0.38500000,0.26700000,0.02011000,0.07160000,0.45000000,540.00000000,19.41000000,0.86600000,6.31000000,0.70200000,1.59000000,1.30000000,6.56000000,0.72600000,0.08620000,12.93000000,0.19010000,0.19060000,2.39600000,0.09060000,0.02890000,1.06300000,0.01067000,0.21774826,0.16090000,0.00308000,1.08400000,0.76800000,0.72400000,0.06870000,1853.00000000,0.02151000,0.38313000,0.11120000,0.52370000,0.14300000,0.13585924,0.35700000,0.12340000,0.00779000,2.56960000,0.12730000,3.92000000,0.42300000,5.64000000,0.32400000,2.98000000,0.00652000,111.80000000,1.96100000,46.40000000,1.53300000,0.10070000,0.15020000,0.00242300,0.02250000,0.06304200,0.08720000,1.24277490,0.42000000,0.03704000,0.00316900,1.37500000,0.02030000,0.43090000,4.47000000,0.00236000,0.63900000,0.40330000,0.00000843,0.02273000,0.00209000,0.48580000,1.62800000,13.51000000,0.00055220,0.15678000,0.35440000,0.00381100,0.25820000,0.02759000,0.40500000,0.21900000,0.00504000,0.08670000,1.04200000,0.21300000,0.10170000,0.01630000,0.03270000,0.75900000,0.22920000,0.01286000,0.27620000,12.48000000,0.20707974,0.00259800,0.02880716,0.05246000,0.03010000,1.41000000,1.54000000,3.93600000,5.52200000,1.00006504,0.99970009,0.02033217,0.07770000,0.01641000,0.06949000,0.01950000,0.16710000,0.00092372,0.16583216,1.41300000,0.04400000,0.00007380,5.21000000,8.09757073,0.13470000,0.14010000,0.19165236,0.00002467,0.02919124,0.07510000,154.80000000,0.34420000,0.77200000,0.00272000,4.29000000,5442.00000000,0.17490000,41.40000000,8.49000000,0.01741000,0.16030000,95.88213273144177 diff --git a/src/userproof/config/config.go b/src/userproof/config/config.go new file mode 100644 index 0000000..e63e0dc --- /dev/null +++ b/src/userproof/config/config.go @@ -0,0 +1,13 @@ +package config + +type Config struct { + PostgresDataSource string + UserDataFile string + DbSuffix string + TreeDB struct { + Driver string + Option struct { + Addr string + } + } +} diff --git a/src/userproof/config/config.json b/src/userproof/config/config.json new file mode 100644 index 0000000..0f53189 --- /dev/null +++ b/src/userproof/config/config.json @@ -0,0 +1,11 @@ +{ + "PostgresDataSource" : "host=127.0.0.1 user=postgres password=zkpos@123 dbname=zkpos port=5432 sslmode=disable", + "UserDataFile": "/server/data/20230118", + "DbSuffix": "0", + "TreeDB": { + "Driver": "redis", + "Option": { + "Addr": "127.0.0.1:6666" + } + } +} diff --git a/src/userproof/main.go b/src/userproof/main.go new file mode 100644 index 0000000..a14da7c --- /dev/null +++ b/src/userproof/main.go @@ -0,0 +1,281 @@ +package main + +import ( + "encoding/hex" + "encoding/json" + "flag" + "fmt" + "github.com/binance/zkmerkle-proof-of-solvency/src/userproof/config" + "github.com/binance/zkmerkle-proof-of-solvency/src/userproof/model" + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + bsmt "github.com/bnb-chain/zkbnb-smt" + "github.com/consensys/gnark-crypto/ecc/bn254/fr/poseidon" + "gorm.io/driver/postgres" + "gorm.io/gorm" + "gorm.io/gorm/logger" + "io/ioutil" + "log" + "os" + "time" +) + +func HandleUserData(userProofConfig *config.Config) []utils.AccountInfo { + startTime := time.Now().UnixMilli() + accounts, _, err := utils.ParseUserDataSet(userProofConfig.UserDataFile) + if err != nil { + panic(err.Error()) + } + + endTime := time.Now().UnixMilli() + fmt.Println("handle user data cost ", endTime-startTime, " ms") + return accounts +} + +type AccountLeave struct { + hash []byte + index uint32 +} + +func ComputeAccountRootHash(userProofConfig *config.Config) { + accountTree, err := utils.NewAccountTree("memory", "") + if err != nil { + panic(err.Error()) + } + accounts, _, err := utils.ParseUserDataSet(userProofConfig.UserDataFile) + if err != nil { + panic(err.Error()) + } + startTime := time.Now().UnixMilli() + totalOpsNumber := len(accounts) + fmt.Println("total ops number is ", totalOpsNumber) + chs := make(chan AccountLeave, 1000) + workers := 32 + results := make(chan bool, workers) + averageAccounts := (totalOpsNumber + workers - 1) / workers + actualWorkers := 0 + for i := 0; i < workers; i++ { + srcAccountIndex := i * averageAccounts + destAccountIndex := (i + 1) * averageAccounts + if destAccountIndex > totalOpsNumber { + destAccountIndex = totalOpsNumber + } + go CalculateAccountHash(accounts[srcAccountIndex:destAccountIndex], chs, results) + if destAccountIndex == totalOpsNumber { + actualWorkers = i + 1 + break + } + } + fmt.Println("actual workers is ", actualWorkers) + quit := make(chan bool, 1) + go CalculateAccountTreeRoot(chs, &accountTree, quit) + + for i := 0; i < actualWorkers; i++ { + <-results + } + close(chs) + <-quit + endTime := time.Now().UnixMilli() + fmt.Println("user account tree generation cost ", endTime-startTime, " ms") + fmt.Printf("account tree root %x\n", accountTree.Root()) +} + +func CalculateAccountHash(accounts []utils.AccountInfo, chs chan<- AccountLeave, res chan<- bool) { + poseidonHasher := poseidon.NewPoseidon() + for i := 0; i < len(accounts); i++ { + chs <- AccountLeave{ + hash: utils.AccountInfoToHash(&accounts[i], &poseidonHasher), + index: accounts[i].AccountIndex, + } + } + res <- true +} + +func CalculateAccountTreeRoot(accountLeaves <-chan AccountLeave, accountTree *bsmt.SparseMerkleTree, quit chan<- bool) { + num := 0 + for accountLeaf := range accountLeaves { + (*accountTree).Set(uint64(accountLeaf.index), accountLeaf.hash) + num++ + if num%100000 == 0 { + fmt.Println("for now, already set ", num, " accounts in tree") + } + } + quit <- true +} + +func main() { + memoryTreeFlag := flag.Bool("memory_tree", false, "construct memory merkle tree") + remotePasswdConfig := flag.String("remote_password_config", "", "fetch password from aws secretsmanager") + flag.Parse() + userProofConfig := &config.Config{} + content, err := ioutil.ReadFile("config/config.json") + if err != nil { + panic(err.Error()) + } + err = json.Unmarshal(content, userProofConfig) + if err != nil { + panic(err.Error()) + } + if *remotePasswdConfig != "" { + s, err := utils.GetPostgresqlSource(userProofConfig.PostgresDataSource, *remotePasswdConfig) + if err != nil { + panic(err.Error()) + } + userProofConfig.PostgresDataSource = s + } + if *memoryTreeFlag { + ComputeAccountRootHash(userProofConfig) + return + } + // ComputeAccountRootHash(userProofConfig) + accountTree, err := utils.NewAccountTree(userProofConfig.TreeDB.Driver, userProofConfig.TreeDB.Option.Addr) + accounts := HandleUserData(userProofConfig) + fmt.Println("num", len(accounts)) + userProofModel := OpenUserProofTable(userProofConfig) + latestAccountIndex, err := userProofModel.GetLatestAccountIndex() + if err != nil && err != utils.DbErrNotFound { + panic(err.Error()) + } + if err == nil { + latestAccountIndex += 1 + } + accountTreeRoot := hex.EncodeToString(accountTree.Root()) + // proofs := make([]model.UserProof, 1) + jobs := make(chan Job, 1000) + nums := make(chan int, 1) + results := make(chan *model.UserProof, 1000) + for i := 0; i < 1; i++ { + go worker(jobs, results, nums, accountTreeRoot) + } + quit := make(chan int, 1) + for i := 0; i < 1; i++ { + go WriteDB(results, userProofModel, quit, latestAccountIndex) + } + for i := int(latestAccountIndex); i < len(accounts); i++ { + leaf, err := accountTree.Get(uint64(i), nil) + if err != nil { + panic(err.Error()) + } + proof, err := accountTree.GetProof(uint64(accounts[i].AccountIndex)) + if err != nil { + panic(err.Error()) + } + jobs <- Job{ + account: &accounts[i], + proof: proof, + leaf: leaf, + } + } + close(jobs) + totalCounts := int(latestAccountIndex) + for i := 0; i < 1; i++ { + num := <-nums + totalCounts += num + fmt.Println("totalCounts", totalCounts) + } + if totalCounts != len(accounts) { + fmt.Println("totalCounts actual:expected", totalCounts, len(accounts)) + panic("mismatch num") + } + close(results) + for i := 0; i < 1; i++ { + <-quit + } + fmt.Println("userproof service run finished...") +} + +func WriteDB(results <-chan *model.UserProof, userProofModel model.UserProofModel, quit chan<- int, latestAccountIndex uint32) { + index := 0 + proofs := make([]model.UserProof, 100) + num := int(latestAccountIndex) + for proof := range results { + proofs[index] = *proof + index += 1 + if index%100 == 0 { + error := userProofModel.CreateUserProofs(proofs) + if error != nil { + panic(error.Error()) + } + num += 100 + if num%100000 == 0 { + fmt.Println("write ", num, "proof to db") + } + index = 0 + } + } + proofs = proofs[:index] + if index > 0 { + fmt.Println("write ", len(proofs), "proofs to db") + userProofModel.CreateUserProofs(proofs) + num += index + } + fmt.Println("total write ", num) + quit <- 0 +} + +type Job struct { + account *utils.AccountInfo + proof [][]byte + leaf []byte +} + +func worker(jobs <-chan Job, results chan<- *model.UserProof, nums chan<- int, root string) { + num := 0 + for job := range jobs { + userProof := ConvertAccount(job.account, job.leaf, job.proof, root) + results <- userProof + num += 1 + } + nums <- num +} + +func ConvertAccount(account *utils.AccountInfo, leafHash []byte, proof [][]byte, root string) *model.UserProof { + var userProof model.UserProof + var userConfig model.UserConfig + userProof.AccountIndex = account.AccountIndex + userProof.AccountId = hex.EncodeToString(account.AccountId) + userProof.AccountLeafHash = hex.EncodeToString(leafHash) + proofSerial, err := json.Marshal(proof) + userProof.Proof = string(proofSerial) + assets, err := json.Marshal(account.Assets) + if err != nil { + panic(err.Error()) + } + userProof.Assets = string(assets) + userProof.TotalDebt = account.TotalDebt.String() + userProof.TotalEquity = account.TotalEquity.String() + + userConfig.AccountIndex = account.AccountIndex + userConfig.AccountIdHash = hex.EncodeToString(account.AccountId) + userConfig.Proof = proof + userConfig.Root = root + userConfig.Assets = account.Assets + userConfig.TotalDebt = account.TotalDebt + userConfig.TotalEquity = account.TotalEquity + configSerial, err := json.Marshal(userConfig) + if err != nil { + panic(err.Error()) + } + userProof.Config = string(configSerial) + return &userProof +} + +func OpenUserProofTable(userConfig *config.Config) model.UserProofModel { + newLogger := logger.New( + log.New(os.Stdout, "\r\n", log.LstdFlags), // io writer + logger.Config{ + SlowThreshold: 60 * time.Second, // Slow SQL threshold + LogLevel: logger.Silent, // Log level + IgnoreRecordNotFoundError: true, // Ignore ErrRecordNotFound error for logger + Colorful: false, // Disable color + }, + ) + db, err := gorm.Open(postgres.Open(userConfig.PostgresDataSource), &gorm.Config{ + Logger: newLogger, + }) + if err != nil { + panic(err.Error()) + } + userProofTable := model.NewUserProofModel(db, userConfig.DbSuffix) + userProofTable.CreateUserProofTable() + return userProofTable +} diff --git a/src/userproof/model/userproof_model.go b/src/userproof/model/userproof_model.go new file mode 100644 index 0000000..96dd764 --- /dev/null +++ b/src/userproof/model/userproof_model.go @@ -0,0 +1,104 @@ +package model + +import ( + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "gorm.io/gorm" + "math/big" +) + +const TableNamePreifx = "userproof" + +type ( + UserProofModel interface { + CreateUserProofTable() error + DropUserProofTable() error + CreateUserProofs(rows []UserProof) error + GetUserProofByIndex(id uint32) (*UserProof, error) + GetUserProofById(id string) (*UserProof, error) + GetLatestAccountIndex() (uint32, error) + } + + defaultUserProofModel struct { + table string + DB *gorm.DB + } + + UserProof struct { + AccountIndex uint32 `gorm:"index:idx_int,unique"` + AccountId string `gorm:"index:idx_str,unique"` + AccountLeafHash string + TotalEquity string + TotalDebt string + Assets string + Proof string + Config string + } + + UserConfig struct { + AccountIndex uint32 + AccountIdHash string + TotalEquity *big.Int + TotalDebt *big.Int + Assets []utils.AccountAsset + Root string + Proof [][]byte + } +) + +func (m *defaultUserProofModel) TableName() string { + return m.table +} + +func NewUserProofModel(db *gorm.DB, suffix string) UserProofModel { + return &defaultUserProofModel{ + table: TableNamePreifx + suffix, + DB: db, + } +} + +func (m *defaultUserProofModel) CreateUserProofTable() error { + return m.DB.Table(m.table).AutoMigrate(UserProof{}) +} + +func (m *defaultUserProofModel) DropUserProofTable() error { + return m.DB.Migrator().DropTable(m.table) +} + +func (m *defaultUserProofModel) CreateUserProofs(rows []UserProof) error { + dbTx := m.DB.Table(m.table).Create(rows) + if dbTx.Error != nil { + return dbTx.Error + } + return nil +} + +func (m *defaultUserProofModel) GetUserProofByIndex(id uint32) (userproof *UserProof, err error) { + dbTx := m.DB.Table(m.table).Where("account_index = ?", id).Find(userproof) + if dbTx.Error != nil { + return nil, dbTx.Error + } else if dbTx.RowsAffected == 0 { + return nil, utils.DbErrNotFound + } + return userproof, nil +} + +func (m *defaultUserProofModel) GetUserProofById(id string) (userproof *UserProof, err error) { + dbTx := m.DB.Table(m.table).Where("account_id = ?", id).Find(userproof) + if dbTx.Error != nil { + return nil, dbTx.Error + } else if dbTx.RowsAffected == 0 { + return nil, utils.DbErrNotFound + } + return userproof, nil +} + +func (m *defaultUserProofModel) GetLatestAccountIndex() (uint32, error) { + var row *UserProof + dbTx := m.DB.Table(m.table).Order("account_index desc").Limit(1).Find(&row) + if dbTx.Error != nil { + return 0, dbTx.Error + } else if dbTx.RowsAffected == 0 { + return 0, utils.DbErrNotFound + } + return row.AccountIndex, nil +} diff --git a/src/utils/account_tree.go b/src/utils/account_tree.go new file mode 100644 index 0000000..7481135 --- /dev/null +++ b/src/utils/account_tree.go @@ -0,0 +1,86 @@ +package utils + +import ( + bsmt "github.com/bnb-chain/zkbnb-smt" + "github.com/bnb-chain/zkbnb-smt/database" + "github.com/bnb-chain/zkbnb-smt/database/memory" + "github.com/bnb-chain/zkbnb-smt/database/redis" + "github.com/consensys/gnark-crypto/ecc/bn254/fr" + "github.com/consensys/gnark-crypto/ecc/bn254/fr/poseidon" + "hash" + "time" +) + +var ( + NilAccountHash []byte +) + +func init() { + zero := &fr.Element{0, 0, 0, 0} + poseidonHasher := poseidon.NewPoseidon() + emptyAssets := make([]AccountAsset, AssetCounts) + for i := 0; i < AssetCounts; i++ { + emptyAssets[i].Index = uint16(i) + } + emptyAssetCommitment := ComputeUserAssetsCommitment(&poseidonHasher, emptyAssets) + tempHash := poseidon.Poseidon(zero, zero, zero, new(fr.Element).SetBytes(emptyAssetCommitment)).Bytes() + NilAccountHash = tempHash[:] + // fmt.Printf("NilAccountHash is %x\n", NilAccountHash) +} + +func NewAccountTree(driver string, addr string) (accountTree bsmt.SparseMerkleTree, err error) { + + hasher := bsmt.NewHasherPool(func() hash.Hash { + return poseidon.NewPoseidon() + }) + + var db database.TreeDB + if driver == "memory" { + db = memory.NewMemoryDB() + } else if driver == "redis" { + redisOption := &redis.RedisConfig{} + redisOption.Addr = addr + redisOption.DialTimeout = 10 * time.Second + redisOption.ReadTimeout = 10 * time.Second + redisOption.WriteTimeout = 10 * time.Second + redisOption.PoolTimeout = 15 * time.Second + redisOption.IdleTimeout = 5 * time.Minute + redisOption.PoolSize = 500 + redisOption.MaxRetries = 5 + redisOption.MinRetryBackoff = 8 * time.Millisecond + redisOption.MaxRetryBackoff = 512 * time.Millisecond + db, err = redis.New(redisOption) + if err != nil { + return nil, err + } + } + + accountTree, err = bsmt.NewBNBSparseMerkleTree(hasher, db, AccountTreeDepth, NilAccountHash) + if err != nil { + return nil, err + } + return accountTree, nil +} + +func VerifyMerkleProof(root []byte, accountIndex uint32, proof [][]byte, node []byte) bool { + if len(proof) != AccountTreeDepth { + return false + } + hasher := poseidon.NewPoseidon() + for i := 0; i < AccountTreeDepth; i++ { + bit := accountIndex & (1 << i) + if bit == 0 { + hasher.Write(node) + hasher.Write(proof[i]) + } else { + hasher.Write(proof[i]) + hasher.Write(node) + } + node = hasher.Sum(nil) + hasher.Reset() + } + if string(node) != string(root) { + return false + } + return true +} diff --git a/src/utils/constants.go b/src/utils/constants.go new file mode 100644 index 0000000..fb22422 --- /dev/null +++ b/src/utils/constants.go @@ -0,0 +1,32 @@ +package utils + +import ( + "github.com/consensys/gnark-crypto/ecc/bn254/fr" + "math/big" +) + +const ( + BatchCreateUserOpsCounts = 864 + AccountTreeDepth = 28 + AssetCounts = 350 + RedisLockKey = "prover_mutex_key" +) + +var ( + ZeroBigInt = new(big.Int).SetInt64(0) + Uint64MaxValueBigInt, _ = new(big.Int).SetString("18446744073709551616", 10) + Uint64MaxValueBigIntSquare, _ = new(big.Int).SetString("340282366920938463463374607431768211456", 10) + Uint64MaxValueFr = new(fr.Element).SetBigInt(Uint64MaxValueBigInt) + Uint64MaxValueFrSquare = new(fr.Element).SetBigInt(Uint64MaxValueBigIntSquare) + AssetTypeForTwoDigits = map[string]bool{ + "BTTC": true, + "SHIB": true, + "LUNC": true, + "XEC": true, + "WIN": true, + "BIDR": true, + "SPELL": true, + "HOT": true, + "DOGE": true, + } +) diff --git a/src/utils/error_codes.go b/src/utils/error_codes.go new file mode 100644 index 0000000..bc9286f --- /dev/null +++ b/src/utils/error_codes.go @@ -0,0 +1,9 @@ +package utils + +import "errors" + +var ( + DbErrSqlOperation = errors.New("unknown sql operation error") + DbErrNotFound = errors.New("sql: no rows in result set") + GetRedisLockFailed = errors.New("get lock failed") +) diff --git a/src/utils/redis_lock.go b/src/utils/redis_lock.go new file mode 100644 index 0000000..b074c7c --- /dev/null +++ b/src/utils/redis_lock.go @@ -0,0 +1,51 @@ +package utils + +import ( + "errors" + "time" + + "github.com/zeromicro/go-zero/core/stores/redis" +) + +const ( + LockExpiryTime = 10 // seconds + RetryInterval = 500 * time.Millisecond + MaxRetryTimes = 3 +) + +func GetRedisLockByKey(conn *redis.Redis, keyLock string) (redisLock *redis.RedisLock) { + // get lock + redisLock = redis.NewRedisLock(conn, keyLock) + // set expiry time + redisLock.SetExpire(LockExpiryTime) + return redisLock +} + +func TryAcquireLock(redisLock *redis.RedisLock) (err error) { + // lock + ok, err := redisLock.Acquire() + if err != nil { + return err + } + // re-try for three times + if !ok { + ticker := time.NewTicker(RetryInterval) + defer ticker.Stop() + count := 0 + for { + if count > MaxRetryTimes { + return errors.New("the lock has been used, re-try later") + } + ok, err = redisLock.Acquire() + if err != nil { + return err + } + if ok { + break + } + count++ + <-ticker.C + } + } + return nil +} diff --git a/src/utils/secret_manager.go b/src/utils/secret_manager.go new file mode 100644 index 0000000..7320c32 --- /dev/null +++ b/src/utils/secret_manager.go @@ -0,0 +1,44 @@ +package utils + +import ( + "context" + "encoding/json" + "github.com/aws/aws-sdk-go-v2/aws" + "github.com/aws/aws-sdk-go-v2/config" + "github.com/aws/aws-sdk-go-v2/service/secretsmanager" +) + +func GetSecretFromAws(secretId string) (string, error) { + region := "ap-northeast-1" + config, err := config.LoadDefaultConfig(context.TODO(), config.WithRegion(region)) + + if err != nil { + panic("Couldn't load config!") + } + conn := secretsmanager.NewFromConfig(config) + + result, err := conn.GetSecretValue(context.TODO(), &secretsmanager.GetSecretValueInput{ + SecretId: aws.String(secretId), + }) + + if err != nil { + return "", err + } + + return *result.SecretString, err +} + +func GetPostgresqlSource(source string, secretId string) (string, error) { + value, err := GetSecretFromAws(secretId) + if err != nil { + return "", err + } + + var result map[string]string + err = json.Unmarshal([]byte(value), &result) + if err != nil { + panic(err.Error()) + } + passwd := result["pg_password"] + return source + " password=" + passwd, nil +} diff --git a/src/utils/types.go b/src/utils/types.go new file mode 100644 index 0000000..c10ba85 --- /dev/null +++ b/src/utils/types.go @@ -0,0 +1,45 @@ +package utils + +import "math/big" + +type CexAssetInfo struct { + TotalEquity uint64 + TotalDebt uint64 + BasePrice uint64 + Symbol string + Index uint32 +} + +type AccountAsset struct { + Index uint16 + Equity uint64 + Debt uint64 +} + +type AccountInfo struct { + AccountIndex uint32 + AccountId []byte + TotalEquity *big.Int + TotalDebt *big.Int + Assets []AccountAsset +} + +type CreateUserOperation struct { + BeforeAccountTreeRoot []byte + AfterAccountTreeRoot []byte + Assets []AccountAsset + AccountIndex uint32 + AccountIdHash []byte + AccountProof [AccountTreeDepth][]byte +} + +type BatchCreateUserWitness struct { + BatchCommitment []byte + BeforeAccountTreeRoot []byte + AfterAccountTreeRoot []byte + BeforeCEXAssetsCommitment []byte + AfterCEXAssetsCommitment []byte + + BeforeCexAssets []CexAssetInfo + CreateUserOps []CreateUserOperation +} diff --git a/src/utils/utils.go b/src/utils/utils.go new file mode 100644 index 0000000..494639b --- /dev/null +++ b/src/utils/utils.go @@ -0,0 +1,380 @@ +package utils + +import ( + "bytes" + "encoding/base64" + "encoding/csv" + "encoding/gob" + "encoding/hex" + "errors" + "fmt" + "github.com/consensys/gnark-crypto/ecc/bn254/fr" + "github.com/consensys/gnark-crypto/ecc/bn254/fr/poseidon" + "github.com/shopspring/decimal" + "hash" + "io/ioutil" + "math/big" + "os" + "path/filepath" + "runtime" + "strings" + "time" +) + +func ConvertAssetInfoToBytes(value any) []byte { + switch t := value.(type) { + //case AccountAsset: + // equityBigInt := new(big.Int).SetUint64(t.Equity) + // debtBigInt := new(big.Int).SetUint64(t.Debt) + // return new(big.Int).Add(new(big.Int).Mul(equityBigInt, Uint64MaxValueBigInt), debtBigInt).Bytes() + case CexAssetInfo: + equityBigInt := new(big.Int).SetUint64(t.TotalEquity) + debtBigInt := new(big.Int).SetUint64(t.TotalDebt) + basePriceBigInt := new(big.Int).SetUint64(t.BasePrice) + return new(big.Int).Add(new(big.Int).Add( + new(big.Int).Mul(equityBigInt, Uint64MaxValueBigIntSquare), + new(big.Int).Mul(debtBigInt, Uint64MaxValueBigInt)), + basePriceBigInt).Bytes() + default: + panic("not supported type") + } +} + +func SelectAssetValue(expectAssetIndex int, flag int, currentAssetPosition int, assets []AccountAsset) (*big.Int, bool) { + if currentAssetPosition >= len(assets) { + return ZeroBigInt, false + } + if int(assets[currentAssetPosition].Index) > expectAssetIndex { + return ZeroBigInt, false + } else { + if flag == 1 { + return new(big.Int).SetUint64(assets[currentAssetPosition].Debt), true + } else { + return new(big.Int).SetUint64(assets[currentAssetPosition].Equity), false + } + } +} + +func ComputeUserAssetsCommitment(hasher *hash.Hash, assets []AccountAsset) []byte { + (*hasher).Reset() + nEles := (AssetCounts*2 + 2) / 3 + currentAssetPosition := 0 + for i := 0; i < nEles; i++ { + expectAssetIndex := (3 * i) / 2 + flag := (3 * i) % 2 + aBigInt, positionChange := SelectAssetValue(expectAssetIndex, flag, currentAssetPosition, assets) + if positionChange { + currentAssetPosition += 1 + } + + expectAssetIndex = ((3 * i) + 1) / 2 + flag = ((3 * i) + 1) % 2 + bBigInt, positionChange := SelectAssetValue(expectAssetIndex, flag, currentAssetPosition, assets) + if positionChange { + currentAssetPosition += 1 + } + + expectAssetIndex = ((3 * i) + 2) / 2 + flag = ((3 * i) + 2) % 2 + cBigInt, positionChange := SelectAssetValue(expectAssetIndex, flag, currentAssetPosition, assets) + if positionChange { + currentAssetPosition += 1 + } + + sumBigIntBytes := new(big.Int).Add(new(big.Int).Add( + new(big.Int).Mul(aBigInt, Uint64MaxValueBigIntSquare), + new(big.Int).Mul(bBigInt, Uint64MaxValueBigInt)), + cBigInt).Bytes() + (*hasher).Write(sumBigIntBytes) + } + + return (*hasher).Sum(nil) +} + +func ParseUserDataSet(dirname string) ([]AccountInfo, []CexAssetInfo, error) { + userFiles, err := ioutil.ReadDir(dirname) + if err != nil { + return nil, nil, err + } + var accountInfo []AccountInfo + var cexAssetInfo []CexAssetInfo + + workersNum := 8 + userFileNames := make([]string, 0) + + type UserParseRes struct { + accounts []AccountInfo + cex []CexAssetInfo + index int + } + results := make([]chan UserParseRes, workersNum) + for i := 0; i < workersNum; i++ { + results[i] = make(chan UserParseRes, 1) + } + for _, userFile := range userFiles { + if strings.Index(userFile.Name(), ".csv") == -1 { + continue + } + userFileNames = append(userFileNames, filepath.Join(dirname, userFile.Name())) + } + for i := 0; i < workersNum; i++ { + go func(workerId int) { + for j := workerId; j < len(userFileNames); j += workersNum { + if j >= len(userFileNames) { + break + } + tmpAccountInfo, tmpCexAssetInfo, err := ReadUserDataFromCsvFile(userFileNames[j]) + if err != nil { + panic(err.Error()) + } + results[workerId] <- UserParseRes{ + accounts: tmpAccountInfo, + cex: tmpCexAssetInfo, + } + } + }(i) + } + + gcQuitChan := make(chan bool) + go func() { + for { + select { + case <-time.After(time.Second * 10): + runtime.GC() + case <-gcQuitChan: + return + } + } + }() + + quit := make(chan bool) + go func() { + for i := 0; i < len(userFileNames); i++ { + res := <-results[i%workersNum] + if i != 0 { + for j := 0; j < len(res.accounts); j++ { + res.accounts[j].AccountIndex += uint32(len(accountInfo)) + } + } + accountInfo = append(accountInfo, res.accounts...) + if len(cexAssetInfo) == 0 { + cexAssetInfo = res.cex + } + } + quit <- true + }() + <-quit + gcQuitChan <- true + return accountInfo, cexAssetInfo, nil +} + +func SafeAdd(a uint64, b uint64) (c uint64) { + c = a + b + if c < a { + panic("overflow for balance") + } + return c +} + +func ReadUserDataFromCsvFile(name string) ([]AccountInfo, []CexAssetInfo, error) { + f, err := os.Open(name) + if err != nil { + return nil, nil, err + } + defer f.Close() + csvReader := csv.NewReader(f) + data, err := csvReader.ReadAll() + //fmt.Println(data[0]) + //fmt.Println(data[1]) + accountIndex := 0 + cexAssetsInfo := make([]CexAssetInfo, AssetCounts) + accounts := make([]AccountInfo, len(data)-1) + assetCounts := (len(data[0]) - 3) / 4 + symbols := data[0] + data = data[1:] + for i := 0; i < assetCounts; i++ { + cexAssetsInfo[i].Symbol = symbols[i*3+4] + cexAssetsInfo[i].Index = uint32(i) + multiplier := int64(100000000) + if AssetTypeForTwoDigits[cexAssetsInfo[i].Symbol] { + multiplier = 100000000000000 + } + cexAssetsInfo[i].BasePrice, err = ConvertFloatStrToUint64(data[0][assetCounts*3+i+2], multiplier) + if err != nil { + fmt.Println("asset data wrong:", data[0][assetCounts*3+i+2], err.Error()) + continue + } + // fmt.Println("base price:", cexAssetsInfo[i].BasePrice) + } + + invalidCounts := 0 + for i := 0; i < len(data); i++ { + var account AccountInfo + assets := make([]AccountAsset, 0, 8) + account.TotalEquity = new(big.Int).SetInt64(0) + account.TotalDebt = new(big.Int).SetInt64(0) + // first element of data[i] is ID. we use accountIndex instead + account.AccountIndex = uint32(accountIndex) + accountId, err := hex.DecodeString(data[i][1]) + if err != nil || len(accountId) != 32 { + panic("accountId is invalid: " + data[i][1]) + } + account.AccountId = new(fr.Element).SetBytes(accountId).Marshal() + var tmpAsset AccountAsset + for j := 0; j < assetCounts; j++ { + multiplier := int64(100000000) + if AssetTypeForTwoDigits[cexAssetsInfo[j].Symbol] { + multiplier = 100 + } + equity, err := ConvertFloatStrToUint64(data[i][j*3+2], multiplier) + if err != nil { + fmt.Println(cexAssetsInfo) + fmt.Println("the symbol is ", cexAssetsInfo[j].Symbol) + fmt.Println("account", data[i][1], "equity data wrong:", err.Error()) + invalidCounts += 1 + continue + } + + debt, err := ConvertFloatStrToUint64(data[i][j*3+3], multiplier) + if err != nil { + fmt.Println("the debt symbol is ", cexAssetsInfo[j].Symbol) + fmt.Println("account", data[i][1], "debt data wrong:", err.Error()) + invalidCounts += 1 + continue + } + if equity != 0 || debt != 0 { + tmpAsset.Index = uint16(j) + tmpAsset.Equity = equity + tmpAsset.Debt = debt + assets = append(assets, tmpAsset) + + account.TotalEquity = new(big.Int).Add(account.TotalEquity, + new(big.Int).Mul(new(big.Int).SetUint64(tmpAsset.Equity), new(big.Int).SetUint64(cexAssetsInfo[j].BasePrice))) + account.TotalDebt = new(big.Int).Add(account.TotalDebt, + new(big.Int).Mul(new(big.Int).SetUint64(tmpAsset.Debt), new(big.Int).SetUint64(cexAssetsInfo[j].BasePrice))) + } + } + + account.Assets = assets + // AccountStatistics[len(assets)] += 1 + if account.TotalEquity.Cmp(account.TotalDebt) >= 0 { + accounts[accountIndex] = account + accountIndex += 1 + } else { + invalidCounts += 1 + fmt.Println("account", data[i][1], "data wrong: total debt is bigger than equity:", account.TotalDebt, account.TotalEquity) + } + if i%100000 == 0 { + runtime.GC() + } + } + accounts = accounts[:accountIndex] + fmt.Println("The invalid accounts number is ", invalidCounts) + fmt.Println("The valid accounts number is ", len(accounts)) + return accounts, cexAssetsInfo, nil +} + +func ConvertFloatStrToUint64(f string, multiplier int64) (uint64, error) { + if f == "0.0" { + return 0, nil + } + numFloat, err := decimal.NewFromString(f) + // equityFloat, err := strconv.ParseFloat(data[i][j*3+1], 64) + if err != nil { + return 0, err + } + numFloat = numFloat.Mul(decimal.NewFromInt(multiplier)) + numBigInt := numFloat.BigInt() + if !numBigInt.IsUint64() { + return 0, errors.New("overflow uint64") + } + num := numBigInt.Uint64() + return num, nil +} + +func DecodeBatchWitness(data string) *BatchCreateUserWitness { + var witnessForCircuit BatchCreateUserWitness + // err = json.Unmarshal([]byte(batchWitness.WitnessData), &witnessForCircuit) + b, err := base64.StdEncoding.DecodeString(data) + if err != nil { + fmt.Println("deserialize batch witness failed: ", err.Error()) + return nil + } + unserializeBuf := bytes.NewBuffer(b) + dec := gob.NewDecoder(unserializeBuf) + err = dec.Decode(&witnessForCircuit) + if err != nil { + fmt.Println("unmarshal batch witness failed: ", err.Error()) + return nil + } + for i := 0; i < len(witnessForCircuit.CreateUserOps); i++ { + userAssets := make([]AccountAsset, AssetCounts) + storeUserAssets := witnessForCircuit.CreateUserOps[i].Assets + for p := 0; p < len(storeUserAssets); p++ { + userAssets[storeUserAssets[p].Index] = storeUserAssets[p] + } + witnessForCircuit.CreateUserOps[i].Assets = userAssets + } + return &witnessForCircuit +} + +func AccountInfoToHash(account *AccountInfo, hasher *hash.Hash) []byte { + //zeroByte := []byte{0} + //startAssetIndex := 0 + //for p := 0; p < len(account.Assets); p++ { + // if p != 0 { + // startAssetIndex = int(account.Assets[p-1].Index) + 1 + // } + // for assetIndex := startAssetIndex; assetIndex < int(account.Assets[p].Index); assetIndex++ { + // (*hasher).Write(zeroByte) + // } + // commitment := ConvertAssetInfoToBytes(account.Assets[p]) + // (*hasher).Write(commitment) + //} + // + //if len(account.Assets) != 0 { + // startAssetIndex = int(account.Assets[len(account.Assets)-1].Index) + 1 + //} + //for p := startAssetIndex; p < AssetCounts; p++ { + // (*hasher).Write(zeroByte) + //} + //assetCommitment := (*hasher).Sum(nil) + assetCommitment := ComputeUserAssetsCommitment(hasher, account.Assets) + (*hasher).Reset() + // compute new account leaf node hash + accountHash := poseidon.PoseidonBytes(account.AccountId, account.TotalEquity.Bytes(), account.TotalDebt.Bytes(), assetCommitment) + return accountHash +} + +func RecoverAfterCexAssets(witness *BatchCreateUserWitness) []CexAssetInfo { + cexAssets := witness.BeforeCexAssets + for i := 0; i < len(witness.CreateUserOps); i++ { + for j := 0; j < len(witness.CreateUserOps[i].Assets); j++ { + asset := &witness.CreateUserOps[i].Assets[j] + cexAssets[asset.Index].TotalEquity += asset.Equity + cexAssets[asset.Index].TotalDebt += asset.Debt + } + } + // sanity check + hasher := poseidon.NewPoseidon() + for i := 0; i < len(cexAssets); i++ { + commitment := ConvertAssetInfoToBytes(cexAssets[i]) + hasher.Write(commitment) + } + cexCommitment := hasher.Sum(nil) + if string(cexCommitment) != string(witness.AfterCEXAssetsCommitment) { + panic("after cex commitment verify failed") + } + return cexAssets +} + +func ComputeCexAssetsCommitment(cexAssetsInfo []CexAssetInfo) []byte { + hasher := poseidon.NewPoseidon() + emptyCexAssets := make([]CexAssetInfo, AssetCounts-len(cexAssetsInfo)) + cexAssetsInfo = append(cexAssetsInfo, emptyCexAssets...) + for i := 0; i < len(cexAssetsInfo); i++ { + commitment := ConvertAssetInfoToBytes(cexAssetsInfo[i]) + hasher.Write(commitment) + } + return hasher.Sum(nil) +} diff --git a/src/utils/utils_test.go b/src/utils/utils_test.go new file mode 100644 index 0000000..8e2253c --- /dev/null +++ b/src/utils/utils_test.go @@ -0,0 +1,89 @@ +package utils + +import ( + "github.com/consensys/gnark-crypto/ecc/bn254/fr/poseidon" + "math/big" + "testing" +) + +func ComputeAssetsCommitmentForTest(userAssets []AccountAsset) []byte { + nEles := (AssetCounts*2 + 2) / 3 + flattenUserAssets := make([]uint64, 3*nEles) + for i := 0; i < AssetCounts; i++ { + flattenUserAssets[2*i] = userAssets[i].Equity + flattenUserAssets[2*i+1] = userAssets[i].Debt + } + + hasher := poseidon.NewPoseidon() + for i := 0; i < nEles; i++ { + aBigInt := new(big.Int).SetUint64(flattenUserAssets[3*i]) + bBigInt := new(big.Int).SetUint64(flattenUserAssets[3*i+1]) + cBigInt := new(big.Int).SetUint64(flattenUserAssets[3*i+2]) + sumBigIntBytes := new(big.Int).Add(new(big.Int).Add( + new(big.Int).Mul(aBigInt, Uint64MaxValueBigIntSquare), + new(big.Int).Mul(bBigInt, Uint64MaxValueBigInt)), + cBigInt).Bytes() + hasher.Write(sumBigIntBytes) + } + expectHash := hasher.Sum(nil) + return expectHash +} + +func TestComputeUserAssetsCommitment(t *testing.T) { + userAssets := make([]AccountAsset, AssetCounts) + testUserAssets1 := make([]AccountAsset, 10) + for i := 0; i < 10; i++ { + testUserAssets1[i].Index = uint16(3 * i) + testUserAssets1[i].Equity = uint64(i*10 + 1000) + testUserAssets1[i].Debt = uint64(i*10 + 500) + userAssets[testUserAssets1[i].Index].Equity = testUserAssets1[i].Equity + userAssets[testUserAssets1[i].Index].Debt = testUserAssets1[i].Debt + } + for i := 0; i < AssetCounts; i++ { + userAssets[i].Index = uint16(i) + } + expectHash := ComputeAssetsCommitmentForTest(userAssets) + + hasher := poseidon.NewPoseidon() + hasher.Reset() + actualHash := ComputeUserAssetsCommitment(&hasher, testUserAssets1) + if string(expectHash) != string(actualHash) { + t.Errorf("not match: %x:%x\n", expectHash, actualHash) + } + + // case 2 + userAssets = make([]AccountAsset, AssetCounts) + for i := 0; i < AssetCounts; i++ { + userAssets[i].Index = uint16(i) + } + for i := 0; i < 10; i++ { + testUserAssets1[i].Index = uint16(3*i) + 2 + testUserAssets1[i].Equity = uint64(i*10 + 1000) + testUserAssets1[i].Debt = uint64(i*10 + 500) + userAssets[testUserAssets1[i].Index].Equity = testUserAssets1[i].Equity + userAssets[testUserAssets1[i].Index].Debt = testUserAssets1[i].Debt + } + + expectHash = ComputeAssetsCommitmentForTest(userAssets) + + hasher.Reset() + actualHash = ComputeUserAssetsCommitment(&hasher, testUserAssets1) + if string(expectHash) != string(actualHash) { + t.Errorf("not match: %x:%x\n", expectHash, actualHash) + } + + // case 2 + userAssets = make([]AccountAsset, AssetCounts) + for i := 0; i < AssetCounts; i++ { + userAssets[i].Index = uint16(i) + userAssets[i].Equity = uint64(i*10 + 1000) + userAssets[i].Debt = uint64(i*10 + 500) + } + expectHash = ComputeAssetsCommitmentForTest(userAssets) + hasher.Reset() + actualHash = ComputeUserAssetsCommitment(&hasher, userAssets) + if string(expectHash) != string(actualHash) { + t.Errorf("not match: %x:%x\n", expectHash, actualHash) + } + +} diff --git a/src/verifier/config/config.go b/src/verifier/config/config.go new file mode 100644 index 0000000..3cab723 --- /dev/null +++ b/src/verifier/config/config.go @@ -0,0 +1,22 @@ +package config + +import ( + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "math/big" +) + +type Config struct { + ProofTable string + ZkKeyName string + CexAssetsInfo []utils.CexAssetInfo +} + +type UserConfig struct { + AccountIndex uint32 + AccountIdHash string + TotalEquity big.Int + TotalDebt big.Int + Root string + Assets []utils.AccountAsset + Proof []string +} diff --git a/src/verifier/config/config.json b/src/verifier/config/config.json new file mode 100644 index 0000000..8f475bd --- /dev/null +++ b/src/verifier/config/config.json @@ -0,0 +1,20 @@ +{ + "ProofTable": "config/proof.csv", + "ZkKeyName": "config/zkpor864", + "CexAssetsInfo": [ + { + "TotalEquity": 5475341087, + "TotalDebt": 71436240, + "BasePrice": 2312848000000, + "Symbol": "BTC", + "Index": 0 + }, + { + "TotalEquity": 4715323019137, + "TotalDebt": 11386568646, + "BasePrice": 158533000000, + "Symbol": "ETH", + "Index": 1 + } + ] +} \ No newline at end of file diff --git a/src/verifier/config/user_config.json b/src/verifier/config/user_config.json new file mode 100644 index 0000000..cd27b03 --- /dev/null +++ b/src/verifier/config/user_config.json @@ -0,0 +1,9 @@ +{ + "AccountIndex": 9, + "AccountIdHash": "0000041cb7323211d0b356c2fe6e79fdaf0c27d74b3bb1a4635942f9ae92145b", + "Root": "29591ef3a9ed02605edd6ab14f5dd49e7dbe0d03e72a27383f929ef3efb7514f", + "Assets": [{"Index":7,"Equity":123456000,"Debt":0}], + "Proof": ["DrPpFsm4/5HntRTf8M3dbgpdrxq3Q8lZkB2ngysW2js=","G1WgD/CvmGApQgmIX0rE0BlSifkw6IfNwY9z2DnRazM=","HZm8N563lDMrx//oMjejlXKLzLrZQRqKZKyXwpDnT+I=","A+wqmnw0NfdgAyEieZRqKlczF48VOROxME36YBwLhmY=","BaLA62VkWlLE/FZTxnvx/lwU7WNfDxgdM2cBw27MAog=","EvkbbZF7Y/W8AxPc+49lmzzFNdyPl1QWRu1ZQB/gmz8=","EJzsNkrzgcB6LIctzoqWAetzLHO57vx00FxIlLKhwqg=","D3kGOz1Xcsi5hGXr02LOSC23L+lCOhq6FlXGiPYcYig=","DSAmcCy6GEl1DlRNpP05e4I9ScMCz/4DtJCKpserVL8=","L16LdkqEmjI/4uVNETm4ScZ5uA/Cho59zjbgN1OgI+k=","CaRuyDB3b3JeZlItZw8Txi7MSP5vyRpco0OtHRuO6RQ=","CkfKeaCV6rLcskjWE91vCAxTPKEymsDtJvc4r8aWytw=","JfAF+uLGIBAJklZrWRPjxmJ3lFHyau9oNL5dOwQ72kQ=","JKQm66yeIFuPJcm5OkTUDyohsL5CWFF+fFpW/NiS2O0=","KXs+zCQELaQRJzQoCnYm+G2lr5eKLqmWd3G0xeSPWgc=","AFL9l/1p5puhKsCtS7WTT/hExtl3hmRfXnTofVY9+3s=","A2lctbb1mGsAgbERpnu4/RKX/OkcU06dhU9l4wS7e8k=","AIB1T+2rEytbSyMLfyp1rNhS0RCmPYwITdjhb/34FVQ=","GQmXAAvuoPUvt4zDrQ9qaAcRV5t8TPFXAIAIuwv0vr0=","J8pP9A0l54qj9UfumcTXn3hVBYEh+iBH03newr296io=","LD/99JpY8ZZupXaoRt6p6wKDmQepQyVMsJ3s5rX+Q9g=","EOqvnEUbpnzF0HeEv0PdB/R3KMbNU15jYqwNaBJ/j7M=","KLZwBqvYBNFPBFVPQQOipuYd9bYdLEme+Y5UiDRV5Z8=","IXgr/ZWOF/rduJvkSjOABCUtj5C1+tXjHJ/AwR+f7MM=","MFzAvInNDNdT4+6kp2YKAUT4+sb8fdrha9BxXnwHR1Q=","DdvOYaMZDO/di7mBvQdEocS2CE8BH2bGmIDuSGBaHa8=","MEa67EULCikf5rusfcsUb/kWUfx7NPpHjzHKEo3imho=","KLRU4kqn5Fd3FtjapW9MTJBgWdMtAGKgt3OVLQNHh14="], + "TotalEquity": 123456000, + "TotalDebt": 0 +} \ No newline at end of file diff --git a/src/verifier/main.go b/src/verifier/main.go new file mode 100644 index 0000000..b146d15 --- /dev/null +++ b/src/verifier/main.go @@ -0,0 +1,227 @@ +package main + +import ( + "bytes" + "encoding/base64" + "encoding/hex" + "encoding/json" + "flag" + "fmt" + "github.com/binance/zkmerkle-proof-of-solvency/circuit" + "github.com/binance/zkmerkle-proof-of-solvency/src/prover/prover" + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "github.com/binance/zkmerkle-proof-of-solvency/src/verifier/config" + "github.com/consensys/gnark-crypto/ecc" + "github.com/consensys/gnark-crypto/ecc/bn254/fr/poseidon" + "github.com/consensys/gnark/backend/groth16" + "github.com/consensys/gnark/frontend" + "github.com/gocarina/gocsv" + "io/ioutil" + "os" +) + +func main() { + userFlag := flag.Bool("user", false, "flag which indicates user proof verification") + flag.Parse() + if *userFlag { + userConfig := &config.UserConfig{} + content, err := ioutil.ReadFile("config/user_config.json") + if err != nil { + panic(err.Error()) + } + err = json.Unmarshal(content, userConfig) + if err != nil { + panic(err.Error()) + } + root, err := hex.DecodeString(userConfig.Root) + if err != nil || len(root) != 32 { + panic("invalid account tree root") + } + + var proof [][]byte + for i := 0; i < len(userConfig.Proof); i++ { + p, err := base64.StdEncoding.DecodeString(userConfig.Proof[i]) + if err != nil || len(p) != 32 { + panic("invalid proof") + } + proof = append(proof, p) + } + + // padding user assets + userAssets := make([]utils.AccountAsset, utils.AssetCounts) + for i := 0; i < utils.AssetCounts; i++ { + userAssets[i].Index = uint16(i) + } + for i := 0; i < len(userConfig.Assets); i++ { + userAssets[userConfig.Assets[i].Index] = userConfig.Assets[i] + } + hasher := poseidon.NewPoseidon() + assetCommitment := utils.ComputeUserAssetsCommitment(&hasher, userAssets) + hasher.Reset() + // compute new account leaf node hash + accountIdHash, err := hex.DecodeString(userConfig.AccountIdHash) + if err != nil || len(accountIdHash) != 32 { + panic("the AccountIdHash is invalid") + } + accountHash := poseidon.PoseidonBytes(accountIdHash, userConfig.TotalEquity.Bytes(), userConfig.TotalDebt.Bytes(), assetCommitment) + //if err != nil || len(root) != 32 { + // panic(err.Error()) + //} + fmt.Printf("merkle leave hash: %x\n", accountHash) + verifyFlag := utils.VerifyMerkleProof(root, userConfig.AccountIndex, proof, accountHash) + if verifyFlag { + fmt.Println("verify pass!!!") + } else { + fmt.Println("verify failed...") + } + } else { + verifierConfig := &config.Config{} + content, err := ioutil.ReadFile("config/config.json") + if err != nil { + panic(err.Error()) + } + err = json.Unmarshal(content, verifierConfig) + if err != nil { + panic(err.Error()) + } + + vk, err := prover.LoadVerifyingKey(verifierConfig.ZkKeyName) + if err != nil { + panic(err.Error()) + } + + f, err := os.Open(verifierConfig.ProofTable) + if err != nil { + panic(err.Error()) + } + defer f.Close() + // index 4: proof_info, index 5: cex_asset_list_commitments + // index 6: account_tree_roots, index 7: batch_commitment + // index 8: batch_number + type Proof struct { + BatchNumber int64 `csv:"batch_number"` + ZkProof string `csv:"proof_info"` + CexAssetCommitment []string `csv:"cex_asset_list_commitments"` + AccountTreeRoots []string `csv:"account_tree_roots"` + BatchCommitment string `csv:"batch_commitment"` + } + tmpProofs := []*Proof{} + + err = gocsv.UnmarshalFile(f, &tmpProofs) + if err != nil { + panic(err.Error()) + } + + proofs := make([]Proof, len(tmpProofs)) + for i := 0; i < len(tmpProofs); i++ { + proofs[tmpProofs[i].BatchNumber] = *tmpProofs[i] + } + + batchNumber := int64(0) + prevCexAssetListCommitments := make([][]byte, 2) + prevAccountTreeRoots := make([][]byte, 2) + // depth-28 empty account tree root + emptyAccountTreeRoot, err := hex.DecodeString("0118925954da77d1a4b241fd163e4373e2265c515cfa60af7fcd28c8cb9ad58a") + if err != nil { + fmt.Println("wrong empty empty account tree root") + return + } + prevAccountTreeRoots[1] = emptyAccountTreeRoot + // according to asset price info to compute + cexAssetsInfo := make([]utils.CexAssetInfo, len(verifierConfig.CexAssetsInfo)) + for i := 0; i < len(verifierConfig.CexAssetsInfo); i++ { + cexAssetsInfo[verifierConfig.CexAssetsInfo[i].Index] = verifierConfig.CexAssetsInfo[i] + } + emptyCexAssetsInfo := make([]utils.CexAssetInfo, len(cexAssetsInfo)) + copy(emptyCexAssetsInfo, cexAssetsInfo) + for i := 0; i < len(emptyCexAssetsInfo); i++ { + emptyCexAssetsInfo[i].TotalDebt = 0 + emptyCexAssetsInfo[i].TotalEquity = 0 + } + emptyCexAssetListCommitment := utils.ComputeCexAssetsCommitment(emptyCexAssetsInfo) + expectFinalCexAssetsInfoComm := utils.ComputeCexAssetsCommitment(cexAssetsInfo) + prevCexAssetListCommitments[1] = emptyCexAssetListCommitment + var finalCexAssetsInfoComm []byte + var accountTreeRoot []byte + for i := 0; i < len(proofs); i++ { + if batchNumber != proofs[i].BatchNumber { + panic("the batch number is not monotonically increasing by 1") + } + // first deserialize proof + proof := groth16.NewProof(ecc.BN254) + var bufRaw bytes.Buffer + proofRaw, err := base64.StdEncoding.DecodeString(proofs[i].ZkProof) + if err != nil { + fmt.Println("decode proof failed:", batchNumber) + return + } + bufRaw.Write(proofRaw) + proof.ReadFrom(&bufRaw) + // deserialize cex asset list commitment and account tree root + cexAssetListCommitments := make([][]byte, 2) + accountTreeRoots := make([][]byte, 2) + + for j := 0; j < len(proofs[i].CexAssetCommitment); j++ { + cexAssetListCommitments[j], err = base64.StdEncoding.DecodeString(proofs[i].CexAssetCommitment[j]) + if err != nil { + fmt.Println("decode cex asset commitment failed") + panic(err.Error()) + } + } + for j := 0; j < len(proofs[i].AccountTreeRoots); j++ { + accountTreeRoots[j], err = base64.StdEncoding.DecodeString(proofs[i].AccountTreeRoots[j]) + if err != nil { + fmt.Println("decode account tree root failed") + panic(err.Error()) + } + } + + finalCexAssetsInfoComm = cexAssetListCommitments[1] + // verify the public input is correctly computed by cex asset list and account tree root + poseidonHasher := poseidon.NewPoseidon() + poseidonHasher.Write(accountTreeRoots[0]) + poseidonHasher.Write(accountTreeRoots[1]) + poseidonHasher.Write(cexAssetListCommitments[0]) + poseidonHasher.Write(cexAssetListCommitments[1]) + expectHash := poseidonHasher.Sum(nil) + actualHash, err := base64.StdEncoding.DecodeString(proofs[i].BatchCommitment) + if err != nil { + fmt.Println("decode batch commitment failed", batchNumber) + return + } + if string(expectHash) != string(actualHash) { + fmt.Println("public input verify failed ", batchNumber) + fmt.Printf("%x:%x\n", expectHash, actualHash) + return + } + + if string(accountTreeRoots[0]) != string(prevAccountTreeRoots[1]) || + string(cexAssetListCommitments[0]) != string(prevCexAssetListCommitments[1]) { + fmt.Println("mismatch account tree root or cex asset list commitment:", batchNumber) + return + } + prevCexAssetListCommitments = cexAssetListCommitments + prevAccountTreeRoots = accountTreeRoots + + verifyWitness := circuit.NewVerifyBatchCreateUserCircuit(actualHash) + vWitness, err := frontend.NewWitness(verifyWitness, ecc.BN254, frontend.PublicOnly()) + if err != nil { + panic(err.Error()) + } + err = groth16.Verify(proof, vk, vWitness) + if err != nil { + fmt.Println("proof verify failed:", batchNumber, err.Error()) + return + } else { + fmt.Println("proof verify success", batchNumber) + } + batchNumber++ + accountTreeRoot = accountTreeRoots[1] + } + if string(finalCexAssetsInfoComm) != string(expectFinalCexAssetsInfoComm) { + panic("Final Cex Assets Info Not Match") + } + fmt.Printf("account merkle tree root is %x\n", accountTreeRoot) + fmt.Println("All proofs verify passed!!!") + } +} diff --git a/src/witness/config/config.go b/src/witness/config/config.go new file mode 100644 index 0000000..e63e0dc --- /dev/null +++ b/src/witness/config/config.go @@ -0,0 +1,13 @@ +package config + +type Config struct { + PostgresDataSource string + UserDataFile string + DbSuffix string + TreeDB struct { + Driver string + Option struct { + Addr string + } + } +} diff --git a/src/witness/config/config.json b/src/witness/config/config.json new file mode 100644 index 0000000..cba7813 --- /dev/null +++ b/src/witness/config/config.json @@ -0,0 +1,11 @@ +{ + "PostgresDataSource" : "host=127.0.0.1 user=postgres password=zkpos@123 dbname=zkpos port=5432 sslmode=disable", + "DbSuffix": "0", + "UserDataFile": "/server/data/20230118", + "TreeDB": { + "Driver": "redis", + "Option": { + "Addr": "127.0.0.1:6666" + } + } +} diff --git a/src/witness/main.go b/src/witness/main.go new file mode 100644 index 0000000..32ecfb5 --- /dev/null +++ b/src/witness/main.go @@ -0,0 +1,81 @@ +package main + +import ( + "encoding/json" + "flag" + "fmt" + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "github.com/binance/zkmerkle-proof-of-solvency/src/witness/config" + "github.com/binance/zkmerkle-proof-of-solvency/src/witness/witness" + "io/ioutil" + "math/big" +) + +func GenerateFakeCexAssetsInfo() []utils.CexAssetInfo { + cexAssetsInfoList := make([]utils.CexAssetInfo, utils.AssetCounts) + for i := 0; i < utils.AssetCounts; i++ { + cexAssetsInfoList[i].BasePrice = uint64(i + 1) + } + return cexAssetsInfoList +} + +func GenerateFakeAccounts(counts uint32, cexAssetsInfo []utils.CexAssetInfo) []utils.AccountInfo { + + accounts := make([]utils.AccountInfo, counts) + for i := uint32(0); i < counts; i++ { + assets := make([]utils.AccountAsset, utils.AssetCounts) + accounts[i].TotalEquity = new(big.Int).SetInt64(0) + accounts[i].TotalDebt = new(big.Int).SetInt64(0) + for j := 0; j < utils.AssetCounts; j++ { + assets[j].Equity = uint64(j*2 + 1) + assets[j].Debt = uint64(j + 1) + accounts[i].TotalEquity = new(big.Int).Add(accounts[i].TotalEquity, + new(big.Int).Mul(new(big.Int).SetUint64(assets[j].Equity), new(big.Int).SetUint64(cexAssetsInfo[j].BasePrice))) + accounts[i].TotalDebt = new(big.Int).Add(accounts[i].TotalDebt, + new(big.Int).Mul(new(big.Int).SetUint64(assets[j].Debt), new(big.Int).SetUint64(cexAssetsInfo[j].BasePrice))) + } + accounts[i].AccountIndex = uint32(i) + accounts[i].Assets = assets + } + return accounts +} + +func main() { + remotePasswdConfig := flag.String("remote_password_config", "", "fetch password from aws secretsmanager") + flag.Parse() + witnessConfig := &config.Config{} + content, err := ioutil.ReadFile("config/config.json") + if err != nil { + panic(err.Error()) + } + err = json.Unmarshal(content, witnessConfig) + if err != nil { + panic(err.Error()) + } + if *remotePasswdConfig != "" { + s, err := utils.GetPostgresqlSource(witnessConfig.PostgresDataSource, *remotePasswdConfig) + if err != nil { + panic(err.Error()) + } + witnessConfig.PostgresDataSource = s + } + + accounts, cexAssetsInfo, err := utils.ParseUserDataSet(witnessConfig.UserDataFile) + fmt.Println("account counts", len(accounts)) + if err != nil { + panic(err.Error()) + } + accountTree, err := utils.NewAccountTree(witnessConfig.TreeDB.Driver, witnessConfig.TreeDB.Option.Addr) + if err != nil { + panic(err.Error()) + } + fmt.Println("account tree init height is ", accountTree.LatestVersion()) + fmt.Printf("account tree root is %x\n", accountTree.Root()) + + //var accountsNumber uint32 = 1000000 + //cexAssetsInfo := GenerateFakeCexAssetsInfo() + //accounts := GenerateFakeAccounts(accountsNumber, cexAssetsInfo) + witnessService := witness.NewWitness(accountTree, uint32(len(accounts)), accounts, cexAssetsInfo, witnessConfig) + witnessService.Run() + fmt.Println("witness service run finished...") +} diff --git a/src/witness/witness/witness.go b/src/witness/witness/witness.go new file mode 100644 index 0000000..fcdcd6e --- /dev/null +++ b/src/witness/witness/witness.go @@ -0,0 +1,260 @@ +package witness + +import ( + "bytes" + "encoding/base64" + "encoding/gob" + "fmt" + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "github.com/binance/zkmerkle-proof-of-solvency/src/witness/config" + bsmt "github.com/bnb-chain/zkbnb-smt" + "github.com/consensys/gnark-crypto/ecc/bn254/fr/poseidon" + "gorm.io/driver/postgres" + "gorm.io/gorm" + "gorm.io/gorm/logger" + "log" + "math/big" + "os" + "runtime" + "time" +) + +type Witness struct { + accountTree bsmt.SparseMerkleTree + totalOpsNumber uint32 + witnessModel WitnessModel + ops []utils.AccountInfo + cexAssets []utils.CexAssetInfo + db *gorm.DB + ch chan BatchWitness + quit chan int + accountHashChan [utils.BatchCreateUserOpsCounts]chan []byte + currentBatchNumber int64 +} + +func NewWitness(accountTree bsmt.SparseMerkleTree, totalOpsNumber uint32, + ops []utils.AccountInfo, cexAssets []utils.CexAssetInfo, + config *config.Config) *Witness { + newLogger := logger.New( + log.New(os.Stdout, "\r\n", log.LstdFlags), // io writer + logger.Config{ + SlowThreshold: 60 * time.Second, // Slow SQL threshold + LogLevel: logger.Silent, // Log level + IgnoreRecordNotFoundError: true, // Ignore ErrRecordNotFound error for logger + Colorful: false, // Disable color + }, + ) + db, err := gorm.Open(postgres.Open(config.PostgresDataSource), &gorm.Config{ + Logger: newLogger, + }) + if err != nil { + panic(err.Error()) + } + return &Witness{ + accountTree: accountTree, + totalOpsNumber: totalOpsNumber, + witnessModel: NewWitnessModel(db, config.DbSuffix), + ops: ops, + cexAssets: cexAssets, + ch: make(chan BatchWitness, 100), + quit: make(chan int, 1), + currentBatchNumber: 0, + } +} + +func (w *Witness) Run() { + // create table first + w.witnessModel.CreateBatchWitnessTable() + latestWitness, err := w.witnessModel.GetLatestBatchWitness() + var height int64 + if err == utils.DbErrNotFound { + height = -1 + } + if err != nil && err != utils.DbErrNotFound { + panic(err.Error()) + } + if err == nil { + height = latestWitness.Height + w.cexAssets = w.GetCexAssets(latestWitness) + } + batchNumber := (w.totalOpsNumber + utils.BatchCreateUserOpsCounts - 1) / utils.BatchCreateUserOpsCounts + if height == int64(batchNumber)-1 { + fmt.Println("already generate all accounts witness") + return + } + w.currentBatchNumber = height + fmt.Println("latest height is ", height) + + // tree version + if w.accountTree.LatestVersion() > bsmt.Version(height+1) { + rollbackVersion := bsmt.Version(height + 1) + err = w.accountTree.Rollback(rollbackVersion) + if err != nil { + fmt.Println("rollback failed ", rollbackVersion, err.Error()) + panic("rollback failed") + } else { + fmt.Printf("rollback to %x\n", w.accountTree.Root()) + } + } else if w.accountTree.LatestVersion() < bsmt.Version(height+1) { + panic("account tree version is less than current height") + } else { + fmt.Println("normal starting...") + } + + paddingAccountCounts := batchNumber*utils.BatchCreateUserOpsCounts - w.totalOpsNumber + for i := uint32(0); i < paddingAccountCounts; i++ { + emptyAccount := utils.AccountInfo{ + AccountIndex: i + w.totalOpsNumber, + TotalEquity: new(big.Int).SetInt64(0), + TotalDebt: new(big.Int).SetInt64(0), + Assets: make([]utils.AccountAsset, 0), + } + w.ops = append(w.ops, emptyAccount) + } + + poseidonHasher := poseidon.NewPoseidon() + go w.WriteBatchWitnessToDB() + for i := 0; i < utils.BatchCreateUserOpsCounts; i++ { + w.accountHashChan[i] = make(chan []byte, 1) + } + + cpuCores := runtime.NumCPU() + workersNum := 1 + if cpuCores > 2 { + workersNum = cpuCores - 2 + } + averageCount := int64(utils.BatchCreateUserOpsCounts/workersNum + 1) + for i := int64(0); i < int64(workersNum); i++ { + go func(index int64) { + for j := height + 1; j < int64(batchNumber); j++ { + if index*averageCount >= utils.BatchCreateUserOpsCounts { + break + } + lowAccountIndex := index*averageCount + j*utils.BatchCreateUserOpsCounts + highAccountIndex := averageCount + lowAccountIndex + if highAccountIndex > (j+1)*utils.BatchCreateUserOpsCounts { + highAccountIndex = (j + 1) * utils.BatchCreateUserOpsCounts + } + currentAccountIndex := j * utils.BatchCreateUserOpsCounts + // fmt.Printf("worker num: %d, lowAccountInde: %d, highAccountIndex: %d, current: %d\n", index, lowAccountIndex, highAccountIndex, currentAccountIndex) + w.ComputeAccountHash(uint32(lowAccountIndex), uint32(highAccountIndex), uint32(currentAccountIndex)) + } + }(i) + } + + for i := height + 1; i < int64(batchNumber); i++ { + batchCreateUserWit := &utils.BatchCreateUserWitness{ + BeforeAccountTreeRoot: w.accountTree.Root(), + BeforeCexAssets: make([]utils.CexAssetInfo, utils.AssetCounts), + CreateUserOps: make([]utils.CreateUserOperation, utils.BatchCreateUserOpsCounts), + } + + copy(batchCreateUserWit.BeforeCexAssets[:], w.cexAssets[:]) + for j := 0; j < len(w.cexAssets); j++ { + commitment := utils.ConvertAssetInfoToBytes(w.cexAssets[j]) + poseidonHasher.Write(commitment) + } + batchCreateUserWit.BeforeCEXAssetsCommitment = poseidonHasher.Sum(nil) + poseidonHasher.Reset() + + for j := i * utils.BatchCreateUserOpsCounts; j < (i+1)*utils.BatchCreateUserOpsCounts; j++ { + w.ExecuteBatchCreateUser(uint32(j), uint32(i), batchCreateUserWit) + } + for j := 0; j < len(w.cexAssets); j++ { + commitment := utils.ConvertAssetInfoToBytes(w.cexAssets[j]) + poseidonHasher.Write(commitment) + } + batchCreateUserWit.AfterCEXAssetsCommitment = poseidonHasher.Sum(nil) + poseidonHasher.Reset() + batchCreateUserWit.AfterAccountTreeRoot = w.accountTree.Root() + + // compute batch commitment + batchCreateUserWit.BatchCommitment = poseidon.PoseidonBytes(batchCreateUserWit.BeforeAccountTreeRoot, + batchCreateUserWit.AfterAccountTreeRoot, + batchCreateUserWit.BeforeCEXAssetsCommitment, + batchCreateUserWit.AfterCEXAssetsCommitment) + // bz, err := json.Marshal(batchCreateUserWit) + var serializeBuf bytes.Buffer + enc := gob.NewEncoder(&serializeBuf) + err := enc.Encode(batchCreateUserWit) + if err != nil { + panic(err.Error()) + } + witness := BatchWitness{ + Height: int64(i), + WitnessData: base64.StdEncoding.EncodeToString(serializeBuf.Bytes()), + Status: StatusPublished, + } + accPrunedVersion := bsmt.Version(i) + ver, err := w.accountTree.Commit(&accPrunedVersion) + if err != nil { + fmt.Println("ver is ", ver) + panic(err.Error()) + } + // fmt.Printf("ver is %d account tree root is %x\n", ver, w.accountTree.Root()) + w.ch <- witness + } + close(w.ch) + <-w.quit + fmt.Println("cex assets info is ", w.cexAssets) + fmt.Printf("witness run finished, the account tree root is %x\n", w.accountTree.Root()) +} + +func (w *Witness) GetCexAssets(wit *BatchWitness) []utils.CexAssetInfo { + witness := utils.DecodeBatchWitness(wit.WitnessData) + if witness == nil { + panic("decode invalid witness data") + } + cexAssetsInfo := utils.RecoverAfterCexAssets(witness) + fmt.Println("recover cex assets successfully") + return cexAssetsInfo +} + +func (w *Witness) WriteBatchWitnessToDB() { + datas := make([]BatchWitness, 1) + for witness := range w.ch { + datas[0] = witness + err := w.witnessModel.CreateBatchWitness(datas) + if err != nil { + panic("create batch witness failed " + err.Error()) + } + if witness.Height%100 == 0 { + fmt.Println("save batch ", witness.Height, " to db") + } + } + w.quit <- 0 +} + +func (w *Witness) ComputeAccountHash(accountIndex uint32, highAccountIndex uint32, currentIndex uint32) { + poseidonHasher := poseidon.NewPoseidon() + for i := accountIndex; i < highAccountIndex; i++ { + w.accountHashChan[i-currentIndex] <- utils.AccountInfoToHash(&w.ops[i], &poseidonHasher) + } +} + +func (w *Witness) ExecuteBatchCreateUser(accountIndex uint32, currentNumber uint32, batchCreateUserWit *utils.BatchCreateUserWitness) { + index := accountIndex - currentNumber*utils.BatchCreateUserOpsCounts + account := w.ops[accountIndex] + batchCreateUserWit.CreateUserOps[index].BeforeAccountTreeRoot = w.accountTree.Root() + accountProof, err := w.accountTree.GetProof(uint64(account.AccountIndex)) + if err != nil { + panic(err.Error()) + } + copy(batchCreateUserWit.CreateUserOps[index].AccountProof[:], accountProof[:]) + for p := 0; p < len(account.Assets); p++ { + // update cexAssetInfo + w.cexAssets[account.Assets[p].Index].TotalEquity = utils.SafeAdd(w.cexAssets[account.Assets[p].Index].TotalEquity, account.Assets[p].Equity) + w.cexAssets[account.Assets[p].Index].TotalDebt = utils.SafeAdd(w.cexAssets[account.Assets[p].Index].TotalDebt, account.Assets[p].Debt) + } + // update account tree + accountHash := <-w.accountHashChan[index] + err = w.accountTree.Set(uint64(account.AccountIndex), accountHash) + // fmt.Printf("account index %d, hash: %x\n", account.AccountIndex, accountHash) + if err != nil { + panic(err.Error()) + } + batchCreateUserWit.CreateUserOps[index].AfterAccountTreeRoot = w.accountTree.Root() + batchCreateUserWit.CreateUserOps[index].AccountIndex = account.AccountIndex + batchCreateUserWit.CreateUserOps[index].AccountIdHash = account.AccountId + batchCreateUserWit.CreateUserOps[index].Assets = account.Assets +} diff --git a/src/witness/witness/witness_model.go b/src/witness/witness/witness_model.go new file mode 100644 index 0000000..39f4f85 --- /dev/null +++ b/src/witness/witness/witness_model.go @@ -0,0 +1,159 @@ +package witness + +import ( + "github.com/binance/zkmerkle-proof-of-solvency/src/utils" + "time" + + "gorm.io/gorm" +) + +const ( + StatusPublished = iota + StatusReceived + StatusFinished +) + +const ( + TableNamePrefix = `witness` +) + +type ( + WitnessModel interface { + CreateBatchWitnessTable() error + DropBatchWitnessTable() error + GetLatestBatchWitnessHeight() (height int64, err error) + GetBatchWitnessByHeight(height int64) (witness *BatchWitness, err error) + UpdateBatchWitnessStatus(witness *BatchWitness, status int64) error + GetLatestBatchWitness() (witness *BatchWitness, err error) + GetLatestBatchWitnessByStatus(status int64) (witness *BatchWitness, err error) + CreateBatchWitness(witness []BatchWitness) error + GetRowCounts() (count []int64, err error) + } + + defaultWitnessModel struct { + table string + DB *gorm.DB + } + + BatchWitness struct { + gorm.Model + Height int64 `gorm:"index:idx_height,unique"` + WitnessData string + Status int64 + } +) + +func NewWitnessModel(db *gorm.DB, suffix string) WitnessModel { + return &defaultWitnessModel{ + table: TableNamePrefix + suffix, + DB: db, + } +} + +func (m *defaultWitnessModel) TableName() string { + return m.table +} + +func (m *defaultWitnessModel) CreateBatchWitnessTable() error { + return m.DB.Table(m.table).AutoMigrate(BatchWitness{}) +} + +func (m *defaultWitnessModel) DropBatchWitnessTable() error { + return m.DB.Migrator().DropTable(m.table) +} + +func (m *defaultWitnessModel) GetLatestBatchWitnessHeight() (batchNumber int64, err error) { + var row *BatchWitness + dbTx := m.DB.Table(m.table).Order("height desc").Limit(1).Find(&row) + if dbTx.Error != nil { + return 0, utils.DbErrSqlOperation + } else if dbTx.RowsAffected == 0 { + return 0, utils.DbErrNotFound + } + return row.Height, nil +} + +func (m *defaultWitnessModel) GetLatestBatchWitness() (witness *BatchWitness, err error) { + dbTx := m.DB.Table(m.table).Order("height desc").Limit(1).Find(&witness) + if dbTx.Error != nil { + return nil, dbTx.Error + } else if dbTx.RowsAffected == 0 { + return nil, utils.DbErrNotFound + } + return witness, nil +} + +func (m *defaultWitnessModel) GetLatestBatchWitnessByStatus(status int64) (witness *BatchWitness, err error) { + dbTx := m.DB.Table(m.table).Where("status = ?", status).Order("height asc").Limit(1).Find(&witness) + if dbTx.Error != nil { + return nil, utils.DbErrSqlOperation + } else if dbTx.RowsAffected == 0 { + return nil, utils.DbErrNotFound + } + return witness, nil +} + +func (m *defaultWitnessModel) GetBatchWitnessByHeight(height int64) (witness *BatchWitness, err error) { + dbTx := m.DB.Table(m.table).Where("height = ?", height).Limit(1).Find(&witness) + if dbTx.Error != nil { + return nil, utils.DbErrSqlOperation + } else if dbTx.RowsAffected == 0 { + return nil, utils.DbErrNotFound + } + return witness, nil +} + +func (m *defaultWitnessModel) CreateBatchWitness(witness []BatchWitness) error { + //if witness.Height > 1 { + // _, err := m.GetBatchWitnessByHeight(witness.Height - 1) + // if err != nil { + // return fmt.Errorf("previous witness does not exist") + // } + //} + + dbTx := m.DB.Table(m.table).Create(witness) + if dbTx.Error != nil { + return utils.DbErrSqlOperation + } + return nil +} + +func (m *defaultWitnessModel) UpdateBatchWitnessStatus(witness *BatchWitness, status int64) error { + witness.Status = status + witness.UpdatedAt = time.Now() + dbTx := m.DB.Table(m.table).Save(witness) + if dbTx.Error != nil { + return utils.DbErrSqlOperation + } + return nil +} + +func (m *defaultWitnessModel) GetRowCounts() (counts []int64, err error) { + var count int64 + dbTx := m.DB.Table(m.table).Count(&count) + if dbTx.Error != nil { + return nil, dbTx.Error + } + counts = append(counts, count) + var publishedCount int64 + dbTx = m.DB.Table(m.table).Where("status = ?", StatusPublished).Count(&publishedCount) + if dbTx.Error != nil { + return nil, dbTx.Error + } + counts = append(counts, publishedCount) + + var pendingCount int64 + dbTx = m.DB.Table(m.table).Where("status = ?", StatusReceived).Count(&pendingCount) + if dbTx.Error != nil { + return nil, dbTx.Error + } + counts = append(counts, pendingCount) + + var finishedCount int64 + dbTx = m.DB.Table(m.table).Where("status = ?", StatusFinished).Count(&finishedCount) + if dbTx.Error != nil { + return nil, dbTx.Error + } + counts = append(counts, finishedCount) + return counts, nil +}